文件名称:animate.js
文件大小:371B
文件格式:JS
更新时间:2023-04-12 20:13:07
javascript
做了个动画的封装 但是在执行第一个清除定时器是一直报错 Uncaught TypeError: Cannot read property 'times' of null 一直报这个内容 function animate(obj,target){ clearInterval(obj.times); obj.times = setInterval(function() { var step = (target - obj.offsetLeft) / 10; step = step > 0 ? Math.ceil(step) : Math.floor(step); if(obj.offsetLeft == target){ clearInterval(obj.times); }else{ obj.style.left = obj.offsetLeft + step + 'px' ; } },15); }