This cursor follow interaction is too good. Let's build it

Поділитися
Вставка
  • Опубліковано 31 жов 2024

КОМЕНТАРІ • 22

  • @DesignCourse
    @DesignCourse  Рік тому +15

    Big news. A brand new course is in the works, "Advanced Frontends" where we build highly interactive frontends (similar to those found on Awwwards). 😍

  • @waifufx
    @waifufx Рік тому +9

    Sir you deserve an award for all these Awwwards content. Thank you sir.

    • @DesignCourse
      @DesignCourse  Рік тому +2

      Sweet, gimme those awards!

    • @waifufx
      @waifufx Рік тому

      @@DesignCourse Yes Sir I rate you a lot sir

  • @rjm199x
    @rjm199x Рік тому

    legendary! you deserve all recognition!!

  • @pauljohn3898
    @pauljohn3898 Рік тому

    Absolutely amazing

  • @felipeleon6631
    @felipeleon6631 Рік тому

    Love this type of videos! very useful

  • @outpost31737
    @outpost31737 Рік тому

    Nice one Gaz.

  • @tejaskesaria7175
    @tejaskesaria7175 Рік тому +2

    We need a GSAP crash course.

    • @DesignCourse
      @DesignCourse  Рік тому +3

      I do a couple, but I will create an updated crash course here for 2023 shortly.

    • @tejaskesaria7175
      @tejaskesaria7175 Рік тому

      @@DesignCourse Thanks we will wait for it whenever you are ready with it

  • @code.design
    @code.design Рік тому

    @3:10 - Always nice to hear Americans speak German fluently

  • @-0-__-0-
    @-0-__-0- Рік тому

    I did the same thing as this but instead of having a separate hand div animate, I have it placed in my mouse follower div and when it hovers over an element with a specific target, it changes into a mouse follower for that element.

  • @crust5532
    @crust5532 Рік тому

    Awesome tutorial. Will love to see a full GSAP tutorial in this channel.
    Love your contents. Also can you name the font used in this tutorial??

  • @toniok.4726
    @toniok.4726 Рік тому

    Look nice thanks for sharing!

  • @Choco_Goodman
    @Choco_Goodman Рік тому +1

    this not work well when mouse leave , can you fix that sir? i wanna send you bug

  • @izmaelmag
    @izmaelmag Рік тому +1

    GSAP is great but for this particular case you can avoid downloading it and use linear interpolation one-line function in plain JS
    Just an example
    const lerp = (start, stop, amt) => amt * (stop - start) + start;

    • @DesignCourse
      @DesignCourse  Рік тому

      Ty. I do have an old plain vanilla js tutorial that shows doing something similar. I like to show GSAP because likely in the context of such a project, you'd be utilizing GSAP for other parts of the layout.

    • @izmaelmag
      @izmaelmag Рік тому

      @@DesignCourse unfortunately junior developers often adds huge libraries into the project bundle for a ~1% of its features 😅

  • @qwerty-or1yg
    @qwerty-or1yg Рік тому +3

    Does anyone still use plain html, css and js these days? Would be interesting to see an approach to these kinds of interactions using frontend frameworks and making it reusable throughout the project.

    • @DesignCourse
      @DesignCourse  Рік тому +7

      The problem with that is there are a lot of frameworks that people use. Vue, React, Svelte, Angular even. If I show it the vanilla JS way, it should give everyone a solid understanding of how to tackle it.