我使用wow.js跟踪了这个tutorial。我在div中使用它,而不是在整个页面中使用。我滚动div,而不是页面。这个Javascript不能工作。
我需要修复什么?
<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>
提前谢谢你。
发布于 2017-02-10 01:08:34
要使用animated.css,你必须添加“动画”类。
https://stackoverflow.com/questions/42141898
复制相似问题