Skip to content

Instantly share code, notes, and snippets.

@ahmedmusawir
Created February 10, 2018 05:04
Show Gist options
  • Save ahmedmusawir/e80a31d3f04f56049250782150073488 to your computer and use it in GitHub Desktop.
Save ahmedmusawir/e80a31d3f04f56049250782150073488 to your computer and use it in GitHub Desktop.
JS - WOW JS - HOW IT WORKS
<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