赞
踩
使用定时器脚本setInterval(methodname, millisec)、setTimeout(method, millisec)
<body> <div> <img src="image/Taylor1.jpg" height="800" width="1280" id="img" style="display: none"/> </div> <script> //第一次隔6秒弹出图片,停2秒显示图片,从第二次开始隔4秒弹出图片,2秒显示图片 onload=function(){ var obj = document.getElementById("img") //obj.style.display="block"; function show() { var obj = document.getElementById("img"); obj.style.display="block"; setTimeout(noshow,2000); } function noshow() { var obj = document.getElementById("img"); obj.style.display="none"; } setInterval(show,6000); } </s
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。