Created
February 10, 2018 05:04
-
-
Save ahmedmusawir/e80a31d3f04f56049250782150073488 to your computer and use it in GitHub Desktop.
JS - WOW JS - HOW IT WORKS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="css/animate.css"> | |
<script src="js/wow.min.js"></script> | |
<script> | |
new WOW().init(); | |
</script> | |
<div class="wow bounceInUp"> | |
Content to Reveal Here | |
</div> | |
<section class="wow slideInLeft" data-wow-duration="2s" data-wow-delay="5s"> | |
</section> | |
<section class="wow slideInRight" data-wow-offset="10" data-wow-iteration="10"> | |
</section> | |
wow = new WOW( | |
{ | |
boxClass: 'wow', // default | |
animateClass: 'animated', // default | |
offset: 0, // default | |
mobile: true, // default | |
live: true // default | |
} | |
) | |
wow.init(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment