Master Scroll Animations with GSAP & ScrollTrigger | Create a Stunning Website with HTML, CSS, & JS

  Рет қаралды 11,387

Design Synth

Design Synth

Күн бұрын

Пікірлер: 43
@glennwarindu4580
@glennwarindu4580 2 ай бұрын
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
@DesignSynth
@DesignSynth 2 ай бұрын
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!
@Kingthai_2024
@Kingthai_2024 25 күн бұрын
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 !! 😊
@DesignSynth
@DesignSynth 24 күн бұрын
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!
@procoder09
@procoder09 2 ай бұрын
can we connect
@plackalciril
@plackalciril 2 ай бұрын
Is it free to use for my personal projects?. if yes where can i get these assets?
@DesignSynth
@DesignSynth 2 ай бұрын
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
@kazaukesuzuki
@kazaukesuzuki 2 ай бұрын
@@DesignSynth can i have access as well for my personal use
@viveksaini9809
@viveksaini9809 2 ай бұрын
Everyone tech provides code for learning but you are not providing that this is not helping for learner
@plackalciril
@plackalciril 2 ай бұрын
​@@DesignSynth Thank you so much
@DesignSynth
@DesignSynth 18 күн бұрын
@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!
@CricketFanClubvm1wy
@CricketFanClubvm1wy 2 ай бұрын
Bhai mast hai . Please source code or images dedo .. Please it's a request
@DesignSynth
@DesignSynth 2 ай бұрын
The complete source code is available in the description. Kindly watch the entire video, and don't forget to like, share, and subscribe!
@rehanzohan-t4f
@rehanzohan-t4f 3 ай бұрын
Superb
@DesignSynth
@DesignSynth 2 ай бұрын
Your feedback means a lot. Thank you!
@srinathpriyankara9694
@srinathpriyankara9694 Ай бұрын
how to responsive this site? please give a video
@DesignSynth
@DesignSynth Ай бұрын
Thanks for expanding my channel! I will make a tutorial on Responsive Design soon.
@zohaibimran7821
@zohaibimran7821 3 ай бұрын
That's nice ☺️🙂
@DesignSynth
@DesignSynth 3 ай бұрын
Thanks 😄
@mileslegend
@mileslegend 19 күн бұрын
amazing
@DesignSynth
@DesignSynth 18 күн бұрын
Thank you! 😊 Glad you liked it!
@AbidHasanabidbest
@AbidHasanabidbest 6 күн бұрын
Grate Work, But this is not mobile responsiveness.
@DesignSynth
@DesignSynth 6 күн бұрын
Thank you so much for the feedback! 😊 I'm glad you liked the design. I'll be creating a complete responsive tutorial very soon to ensure it looks great on mobile too! Stay tuned!
@boddushivasai
@boddushivasai Ай бұрын
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.
@DesignSynth
@DesignSynth Ай бұрын
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!
@mathavan7209
@mathavan7209 3 ай бұрын
🔥🔥🔥🔥
@DesignSynth
@DesignSynth 2 ай бұрын
🔥 Thanks! Glad you liked it!
@gorickego1882
@gorickego1882 18 күн бұрын
It's possible to add auto play? 🤔
@DesignSynth
@DesignSynth 16 күн бұрын
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.
@gorickego1882
@gorickego1882 16 күн бұрын
@@DesignSynth an example of a function that periodically triggers the animations or incorporates a setInterval function would be great 😅
@DesignSynth
@DesignSynth 15 күн бұрын
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! 😅
@gorickego1882
@gorickego1882 10 күн бұрын
@@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...🙄
@mintz347
@mintz347 2 ай бұрын
cann I make that for free? last msterial down after atermelon video bellow?
@DesignSynth
@DesignSynth 2 ай бұрын
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
@zohaibimran7821
@zohaibimran7821 3 ай бұрын
🎉🎉🎉🎉
@CricketFanClubvm1wy
@CricketFanClubvm1wy 2 ай бұрын
Bhai please description mei daaldo assets.
@DesignSynth
@DesignSynth 2 ай бұрын
The complete source code is available in the description. Kindly watch the entire video, and don't forget to like, share, and subscribe!
@Python902
@Python902 2 ай бұрын
new hn hum to basic kha sy kre
@DesignSynth
@DesignSynth 2 ай бұрын
I'm creating a basic tutorial for you, so you can get started easily. I'll share it with you soon!
@shakilabdusshohid7348
@shakilabdusshohid7348 7 күн бұрын
Not responsive
@DesignSynth
@DesignSynth 6 күн бұрын
Thank you for pointing that out! I will release a tutorial soon to make sure it looks great on all devices. Appreciate your feedback!
Award Winning Animation With Only 20 Lines Of CSS?
6:59
Hyperplexed
Рет қаралды 1,9 МЛН
Crazy Text Animation with CSS and SVG
5:45
Lun Dev
Рет қаралды 53 М.
Amazing remote control#devil  #lilith #funny #shorts
00:30
Devil Lilith
Рет қаралды 15 МЛН
The Singing Challenge #joker #Harriet Quinn
00:35
佐助与鸣人
Рет қаралды 36 МЛН
ТЫ В ДЕТСТВЕ КОГДА ВЫПАЛ ЗУБ😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 3,7 МЛН
ЛУЧШИЙ ФОКУС + секрет! #shorts
00:12
Роман Magic
Рет қаралды 35 МЛН
PLAY VIDEO ON SCROLL - GSAP Scrolltrigger Elementor (No plugin)
5:54
Nicolai Palmkvist
Рет қаралды 303 М.
GSAP vs Framer Motion for React
10:24
Olivier Larose
Рет қаралды 28 М.
10 Tailwind Classes I Wish I Knew Earlier
13:31
Web Dev Simplified
Рет қаралды 194 М.
Please stop using px for font-size.
15:18
Coder Coder
Рет қаралды 235 М.
Frontend Web Development Projects that got me hired
10:38
James Cross
Рет қаралды 286 М.
My Top 5 Techniques for Web Animation
9:58
Olivier Larose
Рет қаралды 105 М.
Mastering Scroll Animations with GSAP ScrollTrigger
23:02
DesignCourse
Рет қаралды 138 М.
Crazy CSS Using By Master CSS
6:46
Lun Dev
Рет қаралды 199 М.
Amazing remote control#devil  #lilith #funny #shorts
00:30
Devil Lilith
Рет қаралды 15 МЛН