I\'m using wow.js, and it works fine, except the animations all happen immediately after the page load, and not when they are scrolled to. I followed the docs, but can\'t fi
I had a similar problem today, because I was using a fixed navigation bar width a height of 160px the content was loaded before I could see it.
I solved it by adding an offset in the WOW initialization :
new WOW({offset: 160 }).init()
Hope it could help.