首先看下结构目录:
原文章链接:http://blog.csdn.net/so_zxn/article/details/79143723
如有哪里需要改进请留言。
以下是简单的代码案例:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>弹出广告图片</title>
<style>
div{
border: 1px solid white;
width:500px ;
height: 350px;
margin: auto;
text-align: center;
}
</style>
<script>
/**
* 实现步骤:
* 第一步:在页面指定位置隐藏一个广告图片(使用 display 属性的 none 值)
第二步:确定事件(onload)并为其绑定一个函数
第三步:书写这个函数(设置一个显示图片的定时操作)
第四步: 书写定时器中的函数(获取广告图片的位置并设置属性style的display值block)
第五步:清除显示图片的定时操作()
第六步:书写隐藏图片的定时操作
第七步:书写定时器中的函数(获取广告图片的位置并设置属性 style 的 display 值 none)
第八步:清除隐藏图片的定时操作()
*/
function init(){
time1=setInterval("show1()",3000);
}
function show1(){
var Ivar=document.getElementById("img3");
Ivar.style.display="block";
clearInterval(time1);
time2=setInterval("hidder1()",3000);
}
function hidder1(){
var Img=document.getElementById("img3");
Img.style.display="none";
clearInterval(time2);
}
</script>
</head>
//οnlοad="init()"只能放在<body></body>标签里,且只能有一个οnlοad=" "方法,
<body οnlοad="init()">
<div>
<img src="../img/ad.jpg" style="display: none;" id="img3" width="100%" height="100%" />
</div>
</body>
</html>