Staggered List Animation in Ionic (without SASS)

Поделиться
HTML-код
  • Опубликовано: 27 дек 2024

Комментарии • 10

  • @ikgeek
    @ikgeek 4 года назад +1

    If you have infinite loader then this is not a good option. Better use angular stagger animation.

    • @JoshuaMorony
      @JoshuaMorony  4 года назад

      I might do a separate video on this, but all you need to do for infinite scrolling is to use the modulus operator to return the remainder when dividing by your "page" size for each infinite scroll data load, e.g. change this: "style={{ "--animation-order": index } as any}" to this: "style={{ "--animation-order": index % this.pageSize } as any}". This will give the newly loaded items the correct delay and animation.
      Edit: Btw, I don't have anything against Angular animations - but people might not want to use Angular animations or might not be using Angular (as is the case in this video).

    • @jdnichollsc
      @jdnichollsc 4 года назад

      He's working from Stencil instead of Angular...

  • @anroswell
    @anroswell 4 года назад

    Great tutorial Morony, exactly i was searching... thank you...

  • @surrajramanathan6644
    @surrajramanathan6644 4 года назад +1

    hey josh, i tried this in angular, and I can't seem to make it work.
    {{task.task}}
    animate-header is the class where the animation is. Please help mee. Thank you.

    • @RaulCacabelosBote
      @RaulCacabelosBote 4 года назад

      Hi Surraj! I've tried too in angular and wasn't able to make it work.
      Have you found a way to implement it in angular??
      Thanks!!

  • @RossRawlins
    @RossRawlins 4 года назад

    how will this work with virtual scrolling? Before I had to use an interceptor observor but not sure now.

    • @JoshuaMorony
      @JoshuaMorony  4 года назад

      Since virtual scrolling relies on recycling DOM elements I would imagine this method (as well as the general SASS method) wouldn't work, but I haven't tried.

  • @kush.mikashita
    @kush.mikashita 4 года назад

    Hi @Josh. How may I contact you?

    • @JoshuaMorony
      @JoshuaMorony  4 года назад

      I have a contact page on my website