riot-animate
riot-animate copied to clipboard
"animate-enter" not really working..?
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/
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>