I followed this tutorial using wow.js
. I uses it in a div, not for the entire page. I scroll the div, not the page. And this Javascript doesn't work .
What do I need to fix?
<style>
body {
background-color: #78ccf0;
margin: 0;
padding: 0;
}
.header {
width: 100%;
height: 214px;
background-color: #000000;
}
.div_body {
width: 100%;
height: 450px;
background-color: #fff;
overflow: scroll;
background-image:url('page_fon.jpg');
font-size: 14pt;
}
.footer {
width: 100%;
height: 270px;
background-color: #000000;
}
</style>
<div class="div_body">text
<div class="wow bounceInRight" >animated text</div>
</div>
Thank you in advance.