中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js如何實現數字遞增特效

發布時間:2021-06-21 11:36:21 來源:億速云 閱讀:1159 作者:小新 欄目:web開發

這篇文章主要介紹js如何實現數字遞增特效,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

示例如下:

js如何實現數字遞增特效

上面就是這個插件的效果,我們來看一下怎么使用的吧

第一: HTML部分這里簡單列舉一個

 <div class="counter col_fourth">
  <h3 class="timer count-title" id="count-number" data-to="300" data-speed="1500"></h3>
  <p class="count-text ">小月博客</p>
 </div>

上面我們來了解兩個關鍵的東西:

  • data-to   這個屬性控制你最終要遞增的數值是多少

  • data-speed    這個看英文的意思就很清楚了就是表示數據遞增的速度了

ps: 這里的class和id  根據大家各自的修改去調整就好了,

第二:JS部分也是插件的核心代碼

$.fn.countTo = function(a) {
  a = a || {};
  return $(this).each(function() {
   var c = $.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")
   }, a);
  var h = Math.ceil(c.speed / c.refreshInterval),
  i = (c.to - c.from) / h;
  var j = this,
  f = $(this),
  e = 0,
  g = c.from,
  d = f.data("countTo") || {};
  f.data("countTo", d);
  if (d.interval) {
   clearInterval(d.interval)
  }
  d.interval = setInterval(k, c.refreshInterval);
  b(g);
  function k() {
   g += i;
   e++;
   b(g);
   if (typeof(c.onUpdate) == "function") {
    c.onUpdate.call(j, g)
   }
   if (e >= h) {
    f.removeData("countTo");
    clearInterval(d.interval);
    g = c.to;
    if (typeof(c.onComplete) == "function") {
     c.onComplete.call(j, g)
    }
   }
  }
  function b(m) {
   var l = c.formatter.call(j, m, c);
   f.html(l)
  }
 })
};
$.fn.countTo.defaults = {
  from: 0,
  to: 0,
  speed: 1000,
  refreshInterval: 100,
  decimals: 0,
  formatter: formatter,
  onUpdate: null,
  onComplete: null
};
function formatter(b, a) {
  return b.toFixed(2)
}
$("#count-number").data("countToOptions", {
  formatter: function(b, a) {
   return b.toFixed(2).replace(/\B(?=(?:\d{3})+(?!\d))/g, ",")
  }
});
$(".timer").each(count);
function count(a) {
  var b = $(this);
  a = $.extend({},
  a || {},
  b.data("countToOptions") || {});
  b.countTo(a)
};

以上是“js如何實現數字遞增特效”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

红桥区| 宜宾县| 阿勒泰市| 义马市| 牟定县| 蕉岭县| 邢台县| 壤塘县| 泌阳县| 晴隆县| 紫阳县| 中西区| 台湾省| 介休市| 都安| 景泰县| 磐石市| 万全县| 来宾市| 若尔盖县| 贵港市| 饶河县| 商水县| 邢台县| 五莲县| 怀仁县| 齐河县| 崇信县| 同江市| 烟台市| 从江县| 石泉县| 绍兴县| 郴州市| 甘泉县| 镇原县| 焦作市| 英山县| 朝阳区| 瑞昌市| 枞阳县|