wow.js happens on page load and not on scroll

后端 未结 9 1064
孤独总比滥情好
孤独总比滥情好 2020-12-16 12:32

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

9条回答
  •  旧巷少年郎
    2020-12-16 12:51

    Here's the solution I found via a closed Github Issue: you can add this to your CSS:

    .wow {
       visibility: hidden;
    }
    

    WOW will then toggle it to visible when starting the animation.

提交回复
热议问题