弹出广告
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>JS實現定時彈出廣告</title><script type="text/javascript">var time;window.onload=function () {window.setTimeout("imgblock()",2000);}function imgblock() {var img_idDIV=document.getElementById("img_idDIV");img_idDIV.style.display="block";}function imgNone() {var img_idDIV=document.getElementById("img_idDIV");img_idDIV.style.display="none";}</script><style>img{width: auto;height: auto;max-width:100%;max-height:100% ;}</style>
</head>
<body><div id="img_idDIV" style="width: auto;position:absolute;right:0px;bottom:0px;overflow: hidden;display: none;"><a href="08圖片輪播1.html"><img src="img/3.jpg"></a></div></body>
</html>
?
總結