* {
margin:0;
padding:0;
}
#div1 {
width:200px;
height:200px;
background:purple;
position:relative;
left:-200px;
top:0;
}
#div1 span {
width:20px;
height:50px;
background:skyblue;
position:absolute;
left:200px;
top:75px;
}
margin:0;
padding:0;
}
#div1 {
width:200px;
height:200px;
background:purple;
position:relative;
left:-200px;
top:0;
}
#div1 span {
width:20px;
height:50px;
background:skyblue;
position:absolute;
left:200px;
top:75px;
}
2016-05-25
楼下的源码还要改进下!特别是在IE10、9、8 img的border没清零
本人也是菜鸟一枚,忽喷! 代码链接:http://pan.baidu.com/s/1nvvSuJf 密码:xmrc
本人也是菜鸟一枚,忽喷! 代码链接:http://pan.baidu.com/s/1nvvSuJf 密码:xmrc
2016-05-25
最新回答 / 慕粉3225051
move.jsfunction getStyle(obj,attr){ if(obj.currentStyle){ return obj.currentStyle[attr];//currentStyle针对IE浏览器 }else{ return getComputedStyle(obj,false)[attr];//getComputedStyle针对火狐浏览器 }}function startMove(obj,json,fn){ var flag = true; clearInterval(obj...
2016-05-24
已采纳回答 / 且听风吟20151212
var oMain=document.getElementById('main')这句不对,你html中定义的id是move,js中却用的main,把main改成move就对了
2016-05-23
最赞回答 / 情积雪
if(flag){clearInterval(obj.time);if(fu){fu();}要放到for(var attr in json){}之外。自己能找到原因真是太好了
2016-05-22