I have implemented wow.js into my webpage, but for some reason it only animates elements when scrolling up the page, opposed to down the page.
The code I'm using is
<script src="wow.js"></script>
<script>
new WOW().init();
</script>
And using
<div class='circle wow bounceInLeft'></div>
for elements I want to animate in when scrolling down.
Any help would really be appreciated. Thanks in advance.