首页 > web前端 > js教程 > 正文

js实现关闭悬浮框广告特效详解

零下一度
发布: 2017-06-29 09:26:58
原创
1947 人浏览过

注意不能直接用close()命名关闭广告函数,避免冲突。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        <html xmlns="www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
        <title>无标题文档</title><style type="text/css">
        #apDiv1 {position: absolute;left: 251px;top: 51px;width: 529px;height: 210px;z-index: 2;background-color: #0000FF;}
        #closebt {position: absolute;top: 0;right: 0;background: red;}
        #apDiv2 {position: absolute;left: 128px;top: 381px;width: 912px;height: 18663px;z-index: -1;background-color: #FF0000;}-->
        </style><script>var xx = 0;function init() {//获取元素的top值            xx = document.getElementById("apDiv1").offsetTop;
        }function aa() {if (document.body.scrollTop) 
        {//兼容谷歌                
        document.getElementById("apDiv1").style.top = xx + document.body.scrollTop + "px";
            } else {//兼容ie,火狐                
            document.getElementById("apDiv1").style.top = xx + document.documentElement.scrollTop + "px";
            }
        }
        window.onscroll = aa;function closetext() {
            document.getElementById("closebt").style.display="none";
            document.getElementById("apDiv1").style.display="none";
        }</script>
        </head>
        <body onload="init()">
        <div id="apDiv1"><span id="closebt"><a href="#" onclick="closetext()">可关闭</a>
        </span></div><div id="apDiv2">
        </div>
        </body>
        </html>
登录后复制

 

以上是js实现关闭悬浮框广告特效详解的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!