Thank you! I'm really glad you loved the animation! That’s awesome that you modified it for a coffee shop-it sounds like a great project! I'd love to see how it turned out!
Hey !! We have like the animation and the cool font you have used in this, we are searching for website's developer for my upcoming fashion startup. I will glad if u make these type for clothing brand !! 😊
Thank you so much for your kind words! 😊 I'm really glad to hear that you liked the animation and the font I used. I’d be more than happy to work with you on your upcoming fashion startup's website! Please feel free to share the details of your requirements - whether it’s the overall style, features, or specific elements you’re looking for in your clothing brand’s website. Once I have a better idea of what you need, we can move forward with the design and development. You can reach me directly at razia786rb123rb@gmail.com, and we can discuss your project further. I look forward to hearing from you and collaborating on something amazing for your brand!
Yes, you're welcome to use these assets for your personal projects! Assets link: drive.google.com/file/d/1VdSfkDgMY_r3pfs-w1Q2eHrZQ5xxsmxt/view?usp=sharing
@plackalciril My apologies for the delayed response! 🙏 Thank you so much for your kind words. I'm thrilled to hear you enjoyed the content! If you ever need any help or have questions, I’m here to support. Thanks for being part of #DesignSynth!
i have a one doubt sir. i want to that id="chocolate" teen when user scroll then come to next page in C shape its means curve shape first bottom right then left side please solve my doubt.
Thanks for your question! If you want an element with id="chocolate" to move in a C-shaped curve as the user scrolls, you can achieve this using CSS animations and JavaScript to control the scroll event. You'll need to animate the position of the element based on the scroll progress, adjusting both the horizontal and vertical positions to create the curve. I'll be happy to create a detailed tutorial on this! Stay tuned for the video, and I'll walk you through the steps to create that effect. Let me know if you have more questions!
Apologies for the delayed response; I had a network issue. Yes, adding autoplay to this design is possible! You can use JavaScript to trigger the animations automatically without any manual input. For instance, you could create a function that periodically triggers the animations or incorporates a setInterval function to move elements automatically.
Certainly! Here's an example of how to set up a setInterval function to autoplay the animations. In this case, we'll create a function that triggers each animation periodically. This example assumes you have animations set up for elements like #can, #chocolate, and #almond and that you want them to run every few seconds. Here’s some sample code: function autoplayAnimations() { const interval = 3000; // Set interval in milliseconds setInterval(() => { gsap.to("#can", { top: "95%", left: "12%", rotate: "30deg", duration: 1 }); gsap.to("#chocolate", { top: "160%", left: "23%", duration: 1 }); // Add additional animations here as needed }, interval); } // Call the function to start autoplaying animations autoplayAnimations(); This code runs every 3 seconds (3000 milliseconds), animating the elements using gsap.to(). You can adjust the interval to change how frequently the animations trigger. Let me know if you need help with anything else! 😅
@@DesignSynthok but I would like to keep the page scrolling while the animation is running. In the example you sent me, the animation starts without scrolling the page...🙄
I appreciate your interest in the project! While I would love to provide everything for free, I’ve set a goal of 5,000 views on the video before sharing the source code. This helps support the channel and allows me to continue creating more content. Thanks for understanding and for your support-it really makes a difference
Damn I love how you animated the page,FYI I modified this website and changed it to a coffee shop and it came out perfectly
Thank you! I'm really glad you loved the animation! That’s awesome that you modified it for a coffee shop-it sounds like a great project! I'd love to see how it turned out!
Hey !! We have like the animation and the cool font you have used in this, we are searching for website's developer for my upcoming fashion startup. I will glad if u make these type for clothing brand !! 😊
Thank you so much for your kind words! 😊 I'm really glad to hear that you liked the animation and the font I used. I’d be more than happy to work with you on your upcoming fashion startup's website!
Please feel free to share the details of your requirements - whether it’s the overall style, features, or specific elements you’re looking for in your clothing brand’s website. Once I have a better idea of what you need, we can move forward with the design and development.
You can reach me directly at razia786rb123rb@gmail.com, and we can discuss your project further. I look forward to hearing from you and collaborating on something amazing for your brand!
can we connect
Is it free to use for my personal projects?. if yes where can i get these assets?
Yes, you're welcome to use these assets for your personal projects! Assets link: drive.google.com/file/d/1VdSfkDgMY_r3pfs-w1Q2eHrZQ5xxsmxt/view?usp=sharing
@@DesignSynth can i have access as well for my personal use
Everyone tech provides code for learning but you are not providing that this is not helping for learner
@@DesignSynth Thank you so much
@plackalciril My apologies for the delayed response! 🙏 Thank you so much for your kind words. I'm thrilled to hear you enjoyed the content! If you ever need any help or have questions, I’m here to support. Thanks for being part of #DesignSynth!
Superb
Your feedback means a lot. Thank you!
amazing
Thank you! 😊 Glad you liked it!
i have a one doubt sir. i want to that id="chocolate" teen when user scroll then come to next page in C shape its means curve shape first bottom right then left side please solve my doubt.
Thanks for your question! If you want an element with id="chocolate" to move in a C-shaped curve as the user scrolls, you can achieve this using CSS animations and JavaScript to control the scroll event. You'll need to animate the position of the element based on the scroll progress, adjusting both the horizontal and vertical positions to create the curve.
I'll be happy to create a detailed tutorial on this! Stay tuned for the video, and I'll walk you through the steps to create that effect. Let me know if you have more questions!
Bhai mast hai .
Please source code or images dedo ..
Please it's a request
The complete source code is available in the description. Kindly watch the entire video, and don't forget to like, share, and subscribe!
how to responsive this site? please give a video
Thanks for expanding my channel! I will make a tutorial on Responsive Design soon.
It's possible to add auto play? 🤔
Apologies for the delayed response; I had a network issue.
Yes, adding autoplay to this design is possible! You can use JavaScript to trigger the animations automatically without any manual input. For instance, you could create a function that periodically triggers the animations or incorporates a setInterval function to move elements automatically.
@@DesignSynth
an example of a function that periodically triggers the animations or incorporates a setInterval function would be great 😅
Certainly! Here's an example of how to set up a setInterval function to autoplay the animations. In this case, we'll create a function that triggers each animation periodically. This example assumes you have animations set up for elements like #can, #chocolate, and #almond and that you want them to run every few seconds.
Here’s some sample code:
function autoplayAnimations() {
const interval = 3000; // Set interval in milliseconds
setInterval(() => {
gsap.to("#can", {
top: "95%",
left: "12%",
rotate: "30deg",
duration: 1
});
gsap.to("#chocolate", {
top: "160%",
left: "23%",
duration: 1
});
// Add additional animations here as needed
}, interval);
}
// Call the function to start autoplaying animations
autoplayAnimations();
This code runs every 3 seconds (3000 milliseconds), animating the elements using gsap.to(). You can adjust the interval to change how frequently the animations trigger. Let me know if you need help with anything else! 😅
@@DesignSynthok but I would like to keep the page scrolling while the animation is running. In the example you sent me, the animation starts without scrolling the page...🙄
That's nice ☺️🙂
Thanks 😄
🔥🔥🔥🔥
🔥 Thanks! Glad you liked it!
cann I make that for free? last msterial down after atermelon video bellow?
I appreciate your interest in the project! While I would love to provide everything for free, I’ve set a goal of 5,000 views on the video before sharing the source code. This helps support the channel and allows me to continue creating more content. Thanks for understanding and for your support-it really makes a difference
Bhai please description mei daaldo assets.
The complete source code is available in the description. Kindly watch the entire video, and don't forget to like, share, and subscribe!
new hn hum to basic kha sy kre
I'm creating a basic tutorial for you, so you can get started easily. I'll share it with you soon!
🎉🎉🎉🎉