您好,登錄后才能下訂單哦!
這篇文章主要介紹js緩動(dòng)動(dòng)畫(huà)封裝的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
主要用到offsetLeft、Math.ceil、Math.floor、Math.abs。
注意offsetLeft獲取到的的值為四舍五入的style.left的數(shù)值,offsetLeft = Math.round(style.left的數(shù)值部分) 比如style.left = 369.4px, 獲取到的offsetLeft = 369。
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>緩動(dòng)動(dòng)畫(huà)</title> <style> #slow_action { width: 100px; height: 100px; background: pink; position: absolute; } </style> </head> <body> <button id="btn1">運(yùn)動(dòng)到400</button> <button id="btn2">運(yùn)動(dòng)到0</button> <p id="slow_action"></p> </body> <script> var btn1 = document.getElementById("btn1") var btn2 = document.getElementById("btn2") var p = document.getElementById("slow_action") /** * 動(dòng)畫(huà)原理 = 盒子位置 + 步長(zhǎng)(步長(zhǎng)越來(lái)越?。? * 盒子位置 = 盒子本身的位置 + (目標(biāo)位置 - 盒子本身位置)/10 */ btn1.onclick = function () { fn(p,400) } btn2.onclick = function () { fn(p,0) } function fn(ele, target) { clearInterval(ele.timer); ele.timer = setInterval(function () { // var target = 400; //最后10像素都是1px向目標(biāo)位置移動(dòng) 最后到達(dá)指定位置 var step = (target - ele.offsetLeft)/10; //差值大于10的時(shí)候向上取整 小于0的時(shí)候向下取整 step = step > 0 ? Math.ceil(step) : Math.floor(step) ele.style.left = ele.offsetLeft + step + "px"; //檢測(cè)定時(shí)器是否停止 console.log(1) //跳出條件 目標(biāo)位置-當(dāng)前位置的絕對(duì)值,小于步長(zhǎng) if(Math.abs(target - ele.offsetLeft) < Math.abs(step)) { ele.style.left = target + "px"; clearInterval(ele.timer) } }, 30); } </script> </html>
以上是“js緩動(dòng)動(dòng)畫(huà)封裝的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。