当前位置:首页 > 网页特效 > 表格图层 >

Js可点击展开关闭的广告代码

时间:2014-03-27 08:37 来源:互联网 作者:源码搜藏 收藏 推荐

运行代码 保存代码 复制代码 提示:您可以先修改部分代码再运行,保存代码功能在Firefox下无效。
  • JS实现网页上可点击展开、关闭的左侧广告代码,表现形式类似对联广告,不过操作方式不一样,点击时候会隐藏在屏幕在左侧,但是不是完全隐藏,仍显示一个图片竖条的广告,而且点击“显示”的时候,它会重新打开广告,这种广告可以提高网页的用户体验。
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>网页上可点击展开、关闭的左侧广告代码</title>
    </head>
    <body>
    <div id="Bar1190_big" style="position:absolute;z-index:9;top:10px;left:0px;width:100px;height:300px;">
    <div id="AD1190" style="width:100px;height:300px;text-align:center;float:none" class="adSpace">
    <a href="/" target="_blank"><img width="100" height="300" src="http://www.codefans.net/jscss/demoimg/201403/2401.jpg" alt="" border="0"></a>
    </div>
    <div style="height:18px;width:100px;background:#CCCCCC;text-align:right;line-height:18px;">
    <a style="font-size:12px;cursor:pointer;" onClick="bar1190_hidden()">关 闭</a> 
    </div>
    </div>
    <div id="Bar1190_small" style="position:absolute;z-index:9;top:10px;display:none;left:0px;width:20px;height:300px;">
    <div id="AD1190" style="width:20px;height:300px;text-align:center;float:none" class="adSpace">
    <a href="/" target="_blank"><img width="25px" height="300" src="http://www.codefans.net/jscss/demoimg/201403/2402.jpg" alt="" border="0"></a>
    </div>
    <div style="height:18px;width:25px;background:#CCCCCC;text-align:right;line-height:18px;">
    <a style="font-size:12px;cursor:pointer;" onClick="bar1190_show()">展开</a>
    </div>
    </div>
    <script type="text/javascript">function bar1190_show(){document.getElementById('Bar1190_big').style.display='';document.getElementById('Bar1190_small').style.display='none';}function bar1190_hidden(){document.getElementById('Bar1190_big').style.display='none';document.getElementById('Bar1190_small').style.display='';}var autohide1190 = setTimeout("bar1190_hidden()",6000);</script>
    </body>
    </html>
由源码搜藏网整理,转载请注明出处https://www.codesocang.com/tx-biaoge/7028.html

表格图层下载排行

最新文章