riot-animate icon indicating copy to clipboard operation
riot-animate copied to clipboard

"animate-enter" not really working..?

Open ghost opened this issue 8 years ago • 1 comments

It seems like animation won't run when i use animate-enter attribute. Something like this

  <div class="card card-fade" animate-enter="fade" animate-duration="300ms" animate-delay="1000ms">
    <p class="">Using ngAnimate style classes</p>
  </div>

Here is the example,

https://jsfiddle.net/5711sapx/

ghost avatar Nov 24 '16 11:11 ghost

I got it to work by changing it to "animate" instead of "animate-enter".

<div class="card card-fade" animate="fade" animate-duration="300ms" animate-delay="1000ms">
    <p class="">Using ngAnimate style classes</p>
  </div>

JosephScript avatar Apr 24 '17 19:04 JosephScript