最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

js实现数字变化

来源:动视网 责编:小采 时间:2020-11-27 19:54:52
文档

js实现数字变化

js实现数字变化:这次给大家带来js实现数字变化,js实现数字变化的注意事项有哪些,下面就是实战案例,一起来看一下。 $.fn.countTo = function (options) { options = options {};//当options未被初始化,即typeof options = 'undefine
推荐度:
导读js实现数字变化:这次给大家带来js实现数字变化,js实现数字变化的注意事项有哪些,下面就是实战案例,一起来看一下。 $.fn.countTo = function (options) { options = options {};//当options未被初始化,即typeof options = 'undefine


这次给大家带来js实现数字变化,js实现数字变化的注意事项有哪些,下面就是实战案例,一起来看一下。

 $.fn.countTo = function (options) {
 options = options || {};//当options未被初始化,即typeof options = 'undefined'时,执行后面部分即var options = {}来初始化一个对象
 return $(this).each(function () {
 // set options for current element
 var settings = $.extend({}, $.fn.countTo.defaults, {
 from: $(this).data('from'),
 to: $(this).data('to'),
 speed: $(this).data('speed'),
 refreshInterval: $(this).data('refresh-interval'),
 decimals: $(this).data('decimals')
 }, options);
 // how many times to update the value, and how much to increment the value on each update
 //更新值多少次,每次更新值多快
 var loops = Math.ceil(settings.speed / settings.refreshInterval),
 increment = (settings.to - settings.from) / loops;
 // references & variables that will change with each update
 //引用和变量每次更新将改变
 var self = this,//返回html对象
 $self = $(this),//返回返回一个jquery对象
 loopCount = 0,
 value = settings.from,
 data = $self.data('countTo') || {};//获取jauery方法对象
 $self.data('countTo', data);//赋值
 // if an existing interval can be found, clear it first
 //如果存在间隔,则清除它
 if (data.interval) {
 clearInterval(data.interval);
 }
 data.interval = setInterval(updateTimer, settings.refreshInterval);
 // initialize the element with the starting value
 //用开始的值初始化
 render(value);
 function updateTimer() {
 value += increment;
 loopCount++;
 render(value);
 if (typeof(settings.onUpdate) == 'function') {
 settings.onUpdate.call(self, value);
 }
 if (loopCount >= loops) {
 // remove the interval
 $self.removeData('countTo');
 clearInterval(data.interval);
 value = settings.to;
 if (typeof(settings.onComplete) == 'function') {
 settings.onComplete.call(self, value);
 }
 }
 }
 function render(value) {
 var formattedValue = settings.formatter.call(self, value, settings);
 $self.html(formattedValue);
 }
 });
 };
 $.fn.countTo.defaults = {
 from: 200, // the number the element should start at
 to: 0, // the number the element should end at
 speed: 1000, // how long it should take to count between the target numbers
 refreshInterval: 1, // how often the element should be updated
 decimals: 0, // the number of decimal places to show
 formatter: formatter, // handler for formatting the value before rendering
 onUpdate: null, // callback method for every time the element is updated
 onComplete: null // callback method for when the element finishes updating
 };
 function formatter(value, settings) {
 return value.toFixed(settings.decimals);
 }
 // custom formatting example
 $('#count-number').data('countToOptions', {
 formatter: function (value, options) {
 return value.toFixed(options.decimals).replace(/\B(?=(?:\d{3})+(?!\d))/g, ',');
 }
 });
 // start all the timers
 $('.timer').each(count);
 function count(options) {
 var $this = $(this);
 options = $.extend({}, options || {}, $this.data('countToOptions') || {});
 $this.countTo(options);
 }

apply与call的简单用法,学习链接。

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

文档

js实现数字变化

js实现数字变化:这次给大家带来js实现数字变化,js实现数字变化的注意事项有哪些,下面就是实战案例,一起来看一下。 $.fn.countTo = function (options) { options = options {};//当options未被初始化,即typeof options = 'undefine
推荐度:
标签: js 数字 变化
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top