wow javascript code example
Example 1: wow animation
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
Example 2: wow.js
<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>
Example 3: wow.js
wow = new WOW(
{
boxClass: 'wow',
animateClass: 'animated',
offset: 0,
mobile: true,
live: true
}
)
wow.init();
Example 4: wow.js
<div class="wow">
Content to Reveal Here
</div>