I'm using animate.css with wow.js.
The third one, with a data delay of more than one second, doesn't fadeInLeft. It fades in normally (not from left).
Anyone has encountered this problem before? How can I fix it?
--
This is my view. I have three list items on the page.
<li>
<span class="fadeInLeft wow" data-wow-delay="300ms">Text1</span>
</li>
<li>
<span class="fadeInLeft wow" data-wow-delay="800ms">Text2</span>
</li>
<li>
<span class="fadeInLeft wow" data-wow-delay="1200ms">Text2</span>
</li>