多物体滑动--->长度变换
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>长度变化动画</title>
<style type="text/css">
*{
margin:0;
padding:0;
}
div {
width:300px;
height:100px;
background:red;
margin-bottom: 10px;
}
</style>
<script>
window.onload=function(){
var ali = document.getElementsByTagName('div');
for(var i=0;i<ali.length;i++){
ali[i].onmouseover=function(){
moves(this,400);
};
ali[i].onmouseout=function(){
moves(this,200);
}
}
};
function moves(obj,tar){
clearInterval(obj.timer);
obj.timer=setInterval(function(){
// var speed=(tar-obj.offsetWidth)/10;
// speed=speed>0?Math.ceil(speed):Math.floor(speed);
var speed=0;
if(obj.offsetWidth>tar){
speed=-10;
}
else {
speed=10;
}
if(obj.offsetWidth==tar){
clearInterval(obj.timer);
}else{
obj.style.width=obj.offsetWidth+speed+'px';
}
},30)
}
</script>
</head>
<body>
<div id="div1"></div>
<div id="div2"></div>
<div id="div3"></div>
</body>
</html>
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦