大型广告.htm
来自「较为详细的介绍了asp自定义的各种函数,方便asp的各种开发.」· HTM 代码 · 共 27 行
HTM
27 行
<body>
<script type="text/javascript">
<!--
divWidth=document.body.clientWidth;
divHeight=document.body.clientHeight;
document.write("<div id='ad' style='position:absolute;width:"+divWidth+";height:"+divHeight+";top:0;left:0'>");
document.write("<table width='100%' height='"+divHeight+"' bgcolor=blue><tr><td>");
4444444
document.write("</td></tr></table>");
document.write("</div>");
var timer;
function exit()
{
if(document.all.ad.style.pixelTop>-divHeight)
{
document.all.ad.style.pixelTop-=20;
timer=setTimeout("exit()",50);
}
else
{
clearTimeout(timer);
}
}
timer=setTimeout("exit()",500);
-->
</script>
</body>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?