您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關JavaScript如何實現余額數字滾動效果,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
上周在一個完成任務領取紅包的活動需求中,需要實現一個用戶點擊按鈕彈出領取紅包彈窗后,在關 閉彈窗返回原來的頁面時,頁面余額數字部分要展示一個每一位數字滾動后的效果。
因為之前沒做過這樣的效果,一開始也不知道要如何實現,本來想在GitHub
上找一下相關的庫,看到一個最高star的庫,但發現它是依賴jQuery
的,而且不可以npm
包引入。感覺就很沒有必要,本來項目是react
框架的,就是要盡量少的操作DOM,為了解決這個滾動就要引入jQuery
,感覺不太合適。所以我決定還是自己實現,先看了一下別人的思路,然后自己再去實現。
其實就是將傳入的帶滾動的n位數字拆分成每一個要滾動的數,然后動態的創建裝著滾動到每一位相應數字的容器,然后放入傳入的目標容器中。滾動到每一位相應的數字的實現可以通過動態創建從0到相應數字的間隔數的div
,div的內容分別為對應的數字,就像一個豎直寫著從0-n的長紙條,然后拉著它在指定時間內從0上拉到目標數字。
既然要封裝,還是寫成class
的形式吧,話不多說,直接上代碼吧
/** * 實現數字滾動的效果的類 */ class DigitScroll { constructor(options) { //獲取容器的DOM,沒有則拋出錯誤 this.container = document.querySelector(options.container); if (!this.container) { throw Error("no container"); } this.container.style.overflow = "hidden"; this.container.style.display = "flex"; //可視容器高度 也是滾動間隔距離,容器要設置高度,否則默認30px this.rollHeight = parseInt(getComputedStyle(this.container).height) || 30; this.container.style.height = this.rollHeight + "px"; } roll(num) { // 將傳入的要滾動的數字拆分后初始化每一位數字的容器 this.initDigitEle(num); const numEles = this.container.querySelectorAll(".single-num"); // 遍歷生成每一位數字的滾動隊列,如滾動到7,則生成內容為0,1,2,3,4,5,6,7的7個div,用于滾動動畫 [...numEles].forEach((numEle, index) => { const curNum = 0; let targetNum = Number(this.numberArr[index]); if (curNum >= targetNum) { targetNum = targetNum + 10; } let cirNum = curNum; // 文檔碎片,拼湊好后一次性插入節點中 const fragment = document.createDocumentFragment(); // 生成從0到目標數字對應的div while (targetNum >= cirNum) { const ele = document.createElement("div"); ele.innerHTML = cirNum % 10; cirNum++; fragment.appendChild(ele); } numEle.innerHTML = ""; numEle.appendChild(fragment); //重置位置 numEle.style.cssText += "-webkit-transition-duration:0s;-webkit-transform:translateY(0)"; setTimeout(() => { numEle.style.cssText += `-webkit-transition-duration:1s;-webkit-transform:translateY(${ -(targetNum - curNum) * this.rollHeight }px);`; }, 50); }); } // 初始化容器 initDigitEle(num) { // 數字拆分位數 const numArr = num.toString().split(""); // 文檔碎片,拼湊好后一次性插入節點中 const fragment = document.createDocumentFragment(); numArr.forEach((item) => { const el = document.createElement("div"); // 數字是要滾動的,非數字如.是不滾動的 if (/[0-9]/.test(item)) { el.className = "single-num"; el.style.height = this.rollHeight + "px"; el.style.lineHeight = this.rollHeight + "px"; } else { el.innerHTML = item; el.className = "no-move"; el.style.verticalAlign = "bottom"; } // el.style.float='left'; fragment.appendChild(el); }, []); this.container.innerHTML = ""; this.container.appendChild(fragment); // 存儲滾動的數字 this.numberArr = numArr.filter((item) => /[0-9]/.test(item)); } }
看完上述內容,你們對JavaScript如何實現余額數字滾動效果有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。