javascript平时小例子①(移动的小div)

Posted w宇小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript平时小例子①(移动的小div)相关的知识,希望对你有一定的参考价值。

 

css样式:

#box{
width: 300px;
height: 300px;
background: deepskyblue;
position: absolute;
margin-right: 20px;
}

 html布局:

<div id="box"></div>

js部分:

window.onload=function(){
abc();
setInterval(abc,50)
function abc(){
var oDiv=document.getElementById("box");
oDiv.style.left=oDiv.offsetLeft+10+"px";
}

}

 

以上是关于javascript平时小例子①(移动的小div)的主要内容,如果未能解决你的问题,请参考以下文章