效果图:
描述说明:
jQuery数字动画插件,添加一些属性和阶跃函数jQuery的动画功能特性。
需要jQuery 1.7.0或更高(2.0.3, 2.0.2, 2.0.1, 2.0.0, 1.10.2, 1.10.1, 1.10.0, 1.9.1, 1.9.0, 1.8.3, 1.8.2, 1.8.1, 1.8.0, 1.7.0)。
简单的例子
html
<p>Fun level <spanid="fun-level"style="color: red; font-size: 0px;">0 %</span>.</p>
js
// animateNumber accepts same arguments, as animate does // it adds only 'number' and 'numberStep' params $('#fun-level').animateNumber( { number: 100, color: 'green', // require jquery.color 'font-size': '50px', easing: 'easeInQuad', // require jquery.easing // optional custom step function // using here to keep '%' sign after number numberStep: function(now, tween) { var floored_number = Math.floor(now), target = $(tween.elem); target.text(floored_number + ' %'); } }, 1800 );
转载请注明来源地址:小川编程 » https://www.youhutong.com/index.php/article/index/596.html
1、本站发布的内容仅限用于学习和研究目的.请勿用于商业或非法用途,下载后请24小时内删除。
2、本站所有内容均不能保证其完整性,不能接受请勿购买或下载,如需完整程序,请去其官方购买正版使用
3、本站联系方式Email:admin@youhutong.com ,收到邮件会第一时间处理。
4、如侵犯到任何版权问题,请立即告知本站(立即在线告知),本站将及时删除并致以最深的歉意