码迷,mamicode.com
首页 > 其他好文 > 详细

dom 左右两侧得广告(兼容IE FF)

时间:2015-01-08 11:02:34      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
body{
    padding:0px;
    margin:0px;
    }
#wrap{
    height:2000px;
    }    
.ad{
    height:200px;
    width:50px;
    background:pink;
    position:fixed;
    }
.left{
    left:0px;
    }
.right{
    right:0px;
    }    
</style>
<script type="text/javascript">
window.onload = function ()
{
    var oad = document.getElementsByClassName(‘ad‘);
    
    oad[0].style.top = oad[1].style.top = (document.documentElement.clientHeight - oad[0].offsetHeight)/2 + ‘px‘;
};
</script>
</head>

<body>
    <div id="wrap">
        <div class="ad left"></div>
        <div class="ad right"></div>
    </div>
</body>
</html>

 

dom 左右两侧得广告(兼容IE FF)

标签:

原文地址:http://www.cnblogs.com/mayufo/p/4210172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!