```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>封装动画函数</title>
<style type="text/css">
input:hover {
cursor: pointer;
}
div {
margin-top: 30px;
width: 200px;
height: 200px;
background-color: green;
position: absolute;
}
</style>
</head>
<body>
<input type="button" value="移动400px" id="btn1">
<input type="button" value="移动到800px" id="btn2"/>
<div id="dv"></div>
<script type="text/javascript">
document.getElementById("btn1").onclick = function() {
animate(document.getElementById("dv"), 400);
}
document.getElementById("btn2").onclick = function() {
animate(document.getElementById("dv"), 800);
}
/*
* 移动任意一个元素到指定位置
* element: 要移动的元素
* target: 要移动的距离(px)
*/
function animate(element, target){
clearInterval(element.tiemId);
element.timeId = setInterval(function() {
var current = element.offsetLeft;
var step = 10; // 每次移动10px
step = current < target ? step : -step;
current += step;
if(Math.abs(target-current) > Math.abs(step)){
element.style.left = current + "px";
}else {
clearInterval(element.timeId);
element.style.left = target + "px";
}
}, 20);
}
</script>
</body>
</html>
```
- js应用场景
- js组成
- js书写位置
- 浮点数精度问题
- undefined与null的区别
- 数据类型转换
- 运算符优先级
- 代码调试
- 函数
- 函数的定义和调用
- 函数的return细节
- 函数是一种数据类型
- this的指向
- 函数成员
- 函数闭包
- 作用域
- 预解析
- js对象
- 对象的创建与调用
- new关键字
- this关键字
- 构造函数创建对象
- 事件
- 数据类型
- 继承
- 杂项
- 如何阻止标签的默认行为
- 为一个标签绑定或移除任何一个事件
- 如何阻止事件的冒泡行为
- 事件的三个阶段
- 移动元素的条件
- 匀速动画函数封装
- 变速动画函数封装
- 获取元素的css属性值
- 数据类型判断方法
- 创建对象的7种写法
- 如何继承
- 为js内置对象添加原型函数
- 将局部变量转换为全局变量
- call函数的用法
- 沙箱
- 浅拷贝
- 深拷贝
- 对象赋值会改变对象
- 解析URL中的字符串
- 格式化日期
- 获取当前浏览器类型
- Vue3.x
- 调式工具Vue Devtools