81 lines
2.1 KiB
HTML
81 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Document</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
div {
|
|
height: 200px;
|
|
width: 200px;
|
|
background: red;
|
|
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">
|
|
function my$(id) {
|
|
return document.getElementById(id)
|
|
}
|
|
my$('btn1').onclick = function() {
|
|
changeanimate(my$('dv'),'height',1000)
|
|
}
|
|
|
|
//获取任意元素的任意一个样式的属性值
|
|
function getStyle(ele,attr) {
|
|
return window.getComputedStyle(ele,null)[attr] ? window.getComputedStyle(ele,null)[attr] : ele.currentStyle[attr]
|
|
}
|
|
|
|
//改变宽度
|
|
//任意元素的任意一个属性的变速动画的封装
|
|
|
|
function changeanimate(ele, attr, target) {
|
|
clearInterval(ele.timer)
|
|
ele.timer = setInterval(function(){
|
|
var current = parseInt(getStyle(ele,attr))
|
|
var step = (target - current) / 10
|
|
step = step > 0? Math.ceil(step) : Math.floor(step)
|
|
current += step
|
|
if(target == current) {
|
|
clearInterval(ele.timer)
|
|
ele.timer = null
|
|
}
|
|
ele.style[attr] = current + 'px';
|
|
},10)
|
|
}
|
|
|
|
function changeanimate(ele,json) {
|
|
//假设都到达的时候
|
|
var flag = true;
|
|
clearInterval(ele.timer)
|
|
//遍历
|
|
for(var attr in json) {
|
|
ele.timer = setInterval(function(){
|
|
var current = parseInt(getStyle(ele,attr))
|
|
var step = (json[attr] - current) / 10
|
|
step = step > 0? Math.ceil(step) : Math.floor(step)
|
|
current += step
|
|
if(json[attr] != current) {
|
|
// clearInterval(ele.timer)
|
|
// ele.timer = null
|
|
flag = false
|
|
}
|
|
ele.style[attr] = current + 'px';
|
|
},10)
|
|
}
|
|
if(flag) {
|
|
clearInterval(ele.timer)
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |