首页 > 其他 > 详细

设计图片反复闪,点击后停止(设计定时器)

时间:2017-01-04 00:04:42      阅读:182      评论:0      收藏:0      [点我收藏+]

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<style>
div{
width: 200px;
height: 200px;
background-color: blue;
position: absolute;
left: 60px;
visibility: visible;
}
</style>
<body>
<input type="button" value="按钮" id="btn"/>
<div id="demo"></div>
</body>
<script>

//定时器函数show

function show(){
var demo=document.getElementById(‘demo‘);
if(demo.style.visibility == "visible"){
demo.style.visibility ="hidden";
}else{
demo.style.visibility=‘visible‘;
}
var timer=setTimeout(‘show()‘,300);
var btn=document.getElementById(‘btn‘);
btn.onclick=function(){//点击取消定时器
clearInterval(timer);
}
}
show();//调用定时器
</script>
</html>

设计图片反复闪,点击后停止(设计定时器)

原文:http://www.cnblogs.com/mcpark/p/6246916.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!