• 浮动广告代码


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

    <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>

  • 相关阅读:
    软件设计原则
    UML 类图
    Lambda 四大内置核心函数式接口
    Lambda 表达式简介
    vuex源码解析及简单实现
    websocket
    module.export / require 和 export / import
    关于form表单提交时required属性失效的问题
    更改mysql引擎后无法建立外键(navicat)
    关于Android studio SDK的安装与配置
  • 原文地址:https://www.cnblogs.com/alex-13/p/3398655.html
Copyright © 2020-2023  润新知