91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

竹山县| 柏乡县| 弥渡县| 五峰| 泗洪县| 青浦区| 绩溪县| 犍为县| 云安县| 肃宁县| 大荔县| 福州市| 抚远县| 浦县| 明溪县| 百色市| 卢氏县| 桃园县| 肥城市| 安多县| 富锦市| 永福县| 台山市| 富平县| 白水县| 卓资县| 岳西县| 当阳市| 慈利县| 文成县| 大连市| 阜城县| 侯马市| 道孚县| 三门峡市| 邵东县| 分宜县| 正蓝旗| 九寨沟县| 南充市| 和平区|