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

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 พ.ย. 2024

ความคิดเห็น • 39

  • @glennwarindu4580
    @glennwarindu4580 หลายเดือนก่อน

    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  หลายเดือนก่อน

      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 17 วันที่ผ่านมา

    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  16 วันที่ผ่านมา

      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 หลายเดือนก่อน +1

    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  10 วันที่ผ่านมา

      @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!

  • @rehanzohan-t4f
    @rehanzohan-t4f 2 หลายเดือนก่อน

    Superb

    • @DesignSynth
      @DesignSynth  2 หลายเดือนก่อน

      Your feedback means a lot. Thank you!

  • @mileslegend
    @mileslegend 10 วันที่ผ่านมา

    amazing

    • @DesignSynth
      @DesignSynth  10 วันที่ผ่านมา

      Thank you! 😊 Glad you liked it!

  • @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!

  • @CricketFanClubvm1wy
    @CricketFanClubvm1wy 2 หลายเดือนก่อน +1

    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!

  • @srinathpriyankara9694
    @srinathpriyankara9694 หลายเดือนก่อน +2

    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.

  • @gorickego1882
    @gorickego1882 9 วันที่ผ่านมา

    It's possible to add auto play? 🤔

    • @DesignSynth
      @DesignSynth  8 วันที่ผ่านมา +1

      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 7 วันที่ผ่านมา

      @@DesignSynth
      an example of a function that periodically triggers the animations or incorporates a setInterval function would be great 😅

    • @DesignSynth
      @DesignSynth  7 วันที่ผ่านมา

      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 วันที่ผ่านมา

      @@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...🙄

  • @zohaibimran7821
    @zohaibimran7821 2 หลายเดือนก่อน

    That's nice ☺️🙂

    • @DesignSynth
      @DesignSynth  2 หลายเดือนก่อน

      Thanks 😄

  • @mathavan7209
    @mathavan7209 2 หลายเดือนก่อน

    🔥🔥🔥🔥

    • @DesignSynth
      @DesignSynth  2 หลายเดือนก่อน

      🔥 Thanks! Glad you liked it!

  • @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

  • @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!

  • @zohaibimran7821
    @zohaibimran7821 2 หลายเดือนก่อน

    🎉🎉🎉🎉