zoukankan      html  css  js  c++  java
  • 浮动广告代码

    <!-- 浮动广告代码开始 -->

    <div id="ShowAD" style="position:absolute; z-index: 100;">
    <div style="155;height:18px;font-size:14px;font-weight:bold;text-align:left;CURSOR: hand;" onClick="closead();"><font color=ff0000>关闭</font></div>
    <IFRAME allowTransparency="true" marginwidth=0 marginheight=0 src="right.htm" frameborder=0 width=155 scrolling=no height=530></IFRAME>
    </div>

    <script>
    var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body;
    var adst = document.getElementById("ShowAD").style;
     adst.top = ( bodyfrm.clientHeight -530-22 ) + "px";
     adst.left = ( bodyfrm.clientWidth -155 ) + "px";
    function moveR() {
     adst.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 530-22) + "px";
     adst.left = ( bodyfrm.scrollLeft + bodyfrm.clientWidth - 155 ) + "px";
    }
    setInterval("moveR();", 80);

    function closead()
    {
     adst.display='none';
    }
    </script>

    <!-- 浮动广告代码结束 -->

    ==========

    right.htm

    ==========

    <html>

    <body>

    <h2>一个定义列表:</h2>

    <dl>
       <dt>计算机</dt>
       <dd>用来计算的仪器 ... ...</dd>
       <dt>显示器</dt>
       <dd>以视觉方式显示信息的装置 ... ...</dd>
    </dl>

    </body>
    </html>

  • 相关阅读:
    面试遇到的问题汇总
    linux系统的安装和配置
    apache重写URL时,排除静态资源
    WordPress限制游客查看文章
    Mysql主从复制读写分离
    Postgres主从
    django-rest-framework-simplejwt
    JavaWeb项目部署到Linux服务器
    Centos8.2云服务器环境安装Tomcat8.5
    java的pdf转jpg
  • 原文地址:https://www.cnblogs.com/alex-13/p/3398655.html
Copyright © 2011-2022 走看看