jQuery+CSS3数字滚动增加动画特效

jQuery+CSS3数字滚动增加动画特效-精品资源网
jQuery+CSS3数字滚动增加动画特效
此内容为免费资源,请登录后查看
0
免费资源

jQuery+CSS3数字滚动增加动画特效

这是一款非常有创意的jQuery+CSS3数字滚动增加动画特效,进入网页数字滚动统计,可用于展示数量统计的地方。

js代码

<script src=\"js/jquery-1.11.0.min.js\" type=\"text/javascript\"></script>
<script type=\"text/javascript\">
$(document).ready(function(){
	$(\'.counter-value\').each(function(){
		$(this).prop(\'Counter\',0).animate({
			Counter: $(this).text()
		},{
			duration: 3500,
			easing: \'swing\',
			step: function (now){
				$(this).text(Math.ceil(now));
			}
		});
	});
});
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容