用户看到此内容时启动动画

时间:2013-08-27 15:39:30

标签: css css3

我有下面的源代码,位于页脚页面,我需要的是当用户向下滚动并查看它时启动动画:

<div class="box_one padding_top_bottom_40 centered">
<div class="circle transition_05 animated bounce"><img padding_top_35 animated bounce" src="img/icons/1.png"></img></div>
<p class="title_4 black_c padding_top_20">Made with love</p>
<p class="title_3 black_c padding_top_20">I am some text</p>
</div>

2 个答案:

答案 0 :(得分:0)

请参阅here使用您可以在用户到达底部时激活动画。

window.onscroll = function(ev) {
     if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) {
    // you're at the bottom of the page
    document.getElementById(div id here).className = animation class;
    }
};

答案 1 :(得分:0)

使用waypoints

  

Waypoints是一个jQuery插件,可以在滚动到元素时轻松执行函数。