Angular Animations: Learn the basics

แชร์
ฝัง

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

  • @ytamb01
    @ytamb01 2 วันที่ผ่านมา

    Thanks. That was a clear explanation of the basics that I needed to hear. I've been turned off angular animations in the past because the animations array has always been incomprehensible.

  • @MohamedAyman-lf1sz
    @MohamedAyman-lf1sz หลายเดือนก่อน +1

    That is very useful, thank you.
    Keep it up please. 👏🏼👏🏼

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

      Thanks, will do!

  • @veronikas.1347
    @veronikas.1347 4 หลายเดือนก่อน

    Thanks a lot, it was really useful!

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

      Glad it was helpful!

  • @guicercal
    @guicercal 3 หลายเดือนก่อน +1

    what are the advantages of using this instead of css classes to manage the animations?

    • @briantreese
      @briantreese  3 หลายเดือนก่อน +1

      If you can use CSS animations there's absolutely nothing wrong with using them but sometimes you can't like when items are being added or removed from the DOM for example. Sometimes you'll want to stagger several items in as they enter. Sometimes you may need to do something else programmatically when an animation starts or ends. There are many different scenarios.
      The animation module in Angular is not a replacement for standard CSS animations it's just another option that you can leverage, when needed, depending on what your particular need is for any given situation. You won't always need to use it but the more you know about it, the more tools you'll have to solve future challenges.
      I hope that helps!

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

    What a hidden gem! Amazing content man, keep pushing. Also, I have a question: when setting this whole animation, is the sidebar disappearing from the DOM when it is closed? Or does it just sit out of the user view? I am asking because idk if I should switch to the angular animations from using tailwind classes to achieve similar thing. What do you think?

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

      Thanks! For this particular example, it just sits out of view. But, it is possible with Angular animations to animate items that enter and leave the DOM. You can see this here: th-cam.com/video/tDXkcITKDDY/w-d-xo.html.
      You certainly don't need to switch away from tailwind classes, if it's working for you as is, I'd probably just leave it. It's just good to understand how animations work in Angular for when you encounter a situation where plain CSS won't work.

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

    Very good video!