How to hide animated elements on load?

后端 未结 3 1951
别跟我提以往
别跟我提以往 2021-02-13 20:29

I\'m using animate.css with waypoints.js in my landing page. I want to animate elements when user scrolls the page. But, the problem is that I need to hide elements before the a

3条回答
  •  隐瞒了意图╮
    2021-02-13 21:06

    Avoid using !important by stacking classes:

    .hidden-load {visibility: hidden;}
    .hidden-load.animated {visibility: visible;}
    

提交回复
热议问题