Blogger Information
Blog 5
fans 0
comment 0
visits 3726
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
让小球移动和停止
King的博客
Original
730 people have browsed it

实例

<html>
<head>
</head>
<body>
<style>
#ball{background:red;border-radius:50%;width:100px;height:100px;margin:10px;position:absolute}
</style>
<div id="ball"></div>
<button onclick="move()">移动</button>
<button onclick="stop()">停止</button>
<script>

 var aa = setInterval(function(){ move() },500)
 // var aa = setInterval(move,500)
function move(){

var ball= document.getElementById('ball')
ball.style.left = ball.offsetLeft + 100 +"px"
}
 
function stop(){
clearInterval(aa);
} 

</script>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post