右下角浮动广告代码
| [日期:2008-05-21] |
来源:右下角浮动广告代码 作者:MFZYW.NET |
[字体:大 中 小]
|
右下角浮动广告代码
<div style=”position:absolute;border:1px solid #000;right:0;” id=”ad”><a href=”http://www.zishu.cn” mce_href=”http://www.mfzyw.Net”>免费资源网测试.</a></div> //这一行写了这个DIV是绝对定位,最好再加一下z-index;边框为1px的实线黑色边;距右边有0PX; ID=AD;
<script language=”JavaScript” type=”text/javascript”> function rightBottomAd(){ var abc = document.getElementById(”ad”); abc.style.top = document.documentElement.scrollTop+document.documentElement.clientHeight-20+”px”;//20是这个层的高度; setTimeout(function(){rightBottomAd();},50); } rightBottomAd(); </script>
|
|