首頁  >  文章  >  web前端  >  在JavaScript中如何實現數值自動增加

在JavaScript中如何實現數值自動增加

亚连
亚连原創
2018-06-14 17:14:444473瀏覽

這篇文章主要為大家詳細介紹了JavaScript實現數值自動增加動畫,具有一定的參考價值,感興趣的小伙伴們可以參考一下

JS實現數值自動增加動畫,效果圖如下:

話不多說,直接上程式碼,註解比較詳細。

<!DOCTYPE html> 
<html> 
 
 <head> 
  <meta charset="UTF-8"> 
  <title>数字自动增加</title> 
 </head> 
 
 <body> 
  <h1 id="time">0</h1> 
 
  <script> 
   //数字自增到某一值动画参数(目标元素,自定义配置) 
   function NumAutoPlusAnimation(targetEle, options) { 
 
    /*可以自己改造下传入的参数,按照自己的需求和喜好封装该函数*/ 
    //不传配置就把它绑定在相应html元素的data-xxxx属性上吧 
    options = options || {}; 
 
    var $this = document.getElementById(targetEle), 
     time = options.time || $this.data(&#39;time&#39;), //总时间--毫秒为单位 
     finalNum = options.num || $this.data(&#39;value&#39;), //要显示的真实数值 
     regulator = options.regulator || 100, //调速器,改变regulator的数值可以调节数字改变的速度 
 
     step = finalNum / (time / regulator),/*每30ms增加的数值--*/ 
     count = 0, //计数器 
     initial = 0; 
 
    var timer = setInterval(function() { 
 
     count = count + step; 
 
     if(count >= finalNum) { 
      clearInterval(timer); 
      count = finalNum; 
     } 
     //t未发生改变的话就直接返回 
     //避免调用text函数,提高DOM性能 
     var t = Math.floor(count); 
     if(t == initial) return; 
 
     initial = t; 
 
     $this.innerHTML = initial; 
    }, 30); 
   } 
 
   NumAutoPlusAnimation("time", { 
    time: 1500, 
    num: 12000, 
    regulator: 50 
   }) 
  </script> 
 
 </body> 
 
</html>

上面是我整理給大家的,希望未來會對大家有幫助。

相關文章:

使用selenium抓取淘寶資料資訊

在JS中命令模式概念與用法(詳細教學)

微信小程式使用Promise如何實現回呼?

使用npm安裝Electron失敗的問題

#利用fullpage.js實作捲動方式

#

以上是在JavaScript中如何實現數值自動增加的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn