<link rel="stylesheet" href="css/wickedcss.min.css">
<link rel="stylesheet" href="css/wickedcss.css">
Remember to substitute the css directory with your css directory!
<div class="barrelRoll">
Place your content here
</div>
<img src="images/mushroom.png" class="spinner"/>
<div class="wow barrelRoll">
Content to Reveal Here
</div>
<script>
$(window).scroll(function() {
$('#animatedElement').each(function(){
var imagePos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (imagePos < topOfWindow+450) {
$(this).addClass("barrelRoll");
}
});
});
</script>
<script>
$('#animatedElement').click(function() {
$(this).addClass("barrelRoll");
});
</script>