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
Avoid using !important by stacking classes:
!important
.hidden-load {visibility: hidden;} .hidden-load.animated {visibility: visible;}