首页 > 代码库 > dom 左右两侧得广告(兼容IE FF)
dom 左右两侧得广告(兼容IE FF)
<!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)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。