JavaScript-如何通过原生JS实现匀速动画

JavaScript-如何通过原生JS实现匀速动画

据我们所知,我们可以通过css3(transform translate即可)区实现这个动画,但是通常面试的时候,可能会被要求原生手敲;

​ 使用到的知识点:定时器去实现setInterval去实现

js 复制代码
<button onclick="changeBox()">点击移动box</button>
    <div class="box"></div>
    <script>
        let box = document.querySelector('.box')
        let timerId 
        let timerId2
        function changeBox(){
            if(timerId2){clearTimeout(timerId2)}
            timerId2 = setTimeout(()=>{
                // if(timerId){clearInterval(timerId)}
                let original = box.offsetLeft;
                let current = 0
                timerId = setInterval(()=>{
                    current++
                    box.style.left = original + current + 'px'
                    // 比如移动到100px的时候就停止
                    console.log(current === 100,"查看防抖是否生效")
                    if(current === 100){
                        clearInterval(timerId)
                    }
                },10)
            },1000)
        }
    </script>
对于以上代码进行公共封装:元素原生实现匀速动画
js 复制代码
  /**
  * @target <Object> 传入的目标元素
  * @moveData <number> 每次点击移动数据
 * **/
function animate(target, moveData,callback) {
   if (target.timerId) {
       clearInterval(target.timerId)
   }
   let original = target.offsetLeft;
   let current = 0
       target.timerId = setInterval(() => {
         current++
         box.style.left = original + current + 'px'
           if (current === moveData) {
              clearInterval(target.timerId)
              if (callback instanceof Function) {
            	callback()
         	}
           }
         }, 10)
       }
缓动动画封装(匀速、加速、减速、返回加速、返回减速)

前面可以看到,我们使用current++是一种匀速的方式,匀速的快慢取决于我们+=后面的值,如果我们希望是缓动动画的形式去移动我们的元素,我们可以通过以下封装算法去实现

js 复制代码
 /** 清除定时器的时候需要注意的判断,非匀速是会有差别的
* if (current <0  || current == 0) {
     clearInterval(timerId4)
     box.style.left =original + 'px'
	}else{
		box.style.left =original + current + 'px'
     }
 **/function speed (type, moveData) {
  switch (type) {
    case 'uniformSpeed': // 匀速
      function uniformSpeed () {
        let current = 0
        return current++
      }
      return speed++
      break
    case 'moderate': // 减速
      function moderate (moveData) {
        let current = 0
        let distance = moveData - current
        return (current += distance
          ? Math.ceil(distance / 10)
          : Math.floor(distance / 10))
      }
      break
    case 'accelerate': // 加速
      function accelerate (moveData) {
        let current = 0
        let distance = 10 + current
        return current < 500
          ? (current += distance
              ? Math.ceil(distance / 10)
              : Math.floor(distance / 10))
          : 500
      }
      break
    case 'comeBack-accelerate': // 往回加速
      function comeBack (moveData) {
        let current = moveData
        let distance = 10 + current
        current -=
          distance > 0 ? Math.ceil(distance / 10) : Math.floor(distance / 10)
      }
      break
    case 'comeBack-moderate': // 往回减速速
      function comeBack (moveData) {
        let current = 0
        let distance = moveData - current
        return (current -= distance
          ? Math.ceil(distance / 10)
          : Math.floor(distance / 10))
      }
      break
  }
}
相关推荐
jinanwuhuaguo1 分钟前
Claude Code 深度学习与场景应用完全指南:从入门到精通的全景实战
开发语言·人工智能·深度学习
rongDang2 分钟前
浏览器模拟发送POST请求
前端·javascript
Ricky_Theseus3 分钟前
C++全局变量、局部变量、静态全局变量、静态局部变量的区别
开发语言·c++
小此方4 分钟前
Re:从零开始的 C++ STL篇(十)map/set使用精讲:常见问题与典型用法(上)
开发语言·数据结构·c++·算法·stl
88号技师6 分钟前
2025年11月一区SCI-壁虎优化算法Gekko Japonicus Algorithm-附Matlab免费代码
开发语言·算法·数学建模·matlab·优化算法
清汤饺子7 分钟前
OpenSpec:让 AI 编程从"开盲盒"到"先签字再干活"
前端·javascript·后端
wuhen_n11 分钟前
ReAct模式理论:让AI学会“思考-行动-观察”
前端·javascript·ai编程
han_12 分钟前
JavaScript设计模式(七):迭代器模式实现与应用
前端·javascript·设计模式
浅念-15 分钟前
LeetCode 双指针题型 C++ 解题整理
开发语言·数据结构·c++·笔记·算法·leetcode·职场和发展
风向决定发型丶15 分钟前
Java 线程池 vs Go GMP
java·开发语言·golang