javascript - Wow.js doesn't load animations with delay of more than 1s. Why? -


i'm using animate.css wow.js.

the third one, data delay of more 1 second, doesn't fadeinleft. fades in (not left).

anyone has encountered problem before? how can fix it?

--

this view. have 3 list items on 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> 

i know thread tad old figured i'd post know of this:

try using section class.

<section class="wow slideinleft" data-wow-duration="2s" data-wow-delay="0.3s"><li>text1</li></section> <section class="wow slideinleft" data-wow-duration="2s" data-wow-delay="0.8s"><li>text2</li></section> <section class="wow slideinleft" data-wow-duration="2s" data-wow-delay="1.2s"><li>text3</li></section> 

Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -