动画函数的简单封装
注意函数需要传递2个参数,动画对象和移动到的距离。
示例:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <!-- 动画里必须加定位 --> <style> div { position: absolute; left: 0; width: 100px; height: 100px; background-color: pink; } span { position: absolute; top: 150px; display: block; width: 150px; height: 150px; background-color: purple; } </style> </head> <body> <div></div> <span></span> </body> <script> // 简单动画函数封装 obj目标对象 target目标位置 function animate(obj, target) { var timer = setInterval(function () { if (div.offsetLeft >= target) { // 停止动画 本质是停止定时器 clearInterval(timer) } obj.style.left = obj.offsetLeft + 1 + 'px' }, 30) } var div = document.querySelector('div') var span = document.querySelector('span') // 调用函数 animate(div, 300) animate(span, 200) </script> </html>