scroll(function() 运行一次就停止? 10
<divclass="m_sub05">aaaa</div><scripttype="text/javascript">$(window).scroll(function...
<div class="m_sub05 " > aaaa</div>
<script type="text/javascript">
$(window).scroll(function () {
if ($(this).scrollTop() >= 3000){
var options = {
useEasing: true, // 使用缓和
useGrouping: false, // 使用分组(是否显示千位分隔符,一般为 true)
};
new CountUp("num1", 0, 339, 0, 2, options).start();
new CountUp("num2", 0, 12, 0, 3, options).start();
new CountUp("num3", 0, 49, 0, 3, options).start();
new CountUp("num4", 0, 100, 0, 3, options).start();
}
});
</script>
以上代码 在大于3000的时候 怎么就执行一次 就停止?
谢谢 展开
<script type="text/javascript">
$(window).scroll(function () {
if ($(this).scrollTop() >= 3000){
var options = {
useEasing: true, // 使用缓和
useGrouping: false, // 使用分组(是否显示千位分隔符,一般为 true)
};
new CountUp("num1", 0, 339, 0, 2, options).start();
new CountUp("num2", 0, 12, 0, 3, options).start();
new CountUp("num3", 0, 49, 0, 3, options).start();
new CountUp("num4", 0, 100, 0, 3, options).start();
}
});
</script>
以上代码 在大于3000的时候 怎么就执行一次 就停止?
谢谢 展开
展开全部
$(document).on("scroll", function() { var scrollTop = $(this).scrollTop(); var windowHeight = $(window).height(); if (scrollTop > windowHeight / 2 && scrollTop < windowHeight / 2 + 10) { $(document).unbind();// 消除绑定的事件 getfall() getfalls() } })
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询