>웹 프론트엔드 >HTML 튜토리얼 >求一个浮动广告框的CSS写法_html/css_WEB-ITnose

求一个浮动广告框的CSS写法_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 12:13:11851검색

就是能固定在页面的某个位置,不随页面滚动而滚动的那种!


回复讨论(解决方案)

<!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><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>IE6 position:fixed</title><style type="text/css">* { margin:0; padding:0;}#content{ height:2000px; }#a{ position:fixed; bottom:0; right:0; width:200px; height:60px; background:#F00;}/*IE6 fixed bug*/* html{overflow:hidden;}* html body{height:100%;overflow:auto;}* html #a{position:absolute;right:18px;}</style></head><body><div id="content">IE6 position:fixed</div><div id="a">IE6 position:fixed</div></body></html>



或者js来做
<!doctype html><html>    <head>        <meta charset="gb2312" />        <style>            body { height:1850px; }            div {                position:absolute; top:0; right:0;            }        </style>    </head>    <body>        <div id="test">            <img  src="http://avatar.profile.csdn.net/0/1/6/2_nglwcm.jpg" / alt="求一个浮动广告框的CSS写法_html/css_WEB-ITnose" >        </div>        <script>            function $(o){return document.getElementById(o)}                        window.onscroll = function(){                $('test').style.top = (document.documentElement.scrollTop || document.body.scrollTop) + 'px'             }        </script>    </body></html>


参考下

我有个现成的写法,从 Discuz 论坛程序里面copy的,具体你可以看看: http://www.bacysoft.cn/thread-56-1-1.html

用position:fixed;  calmcrime的方法行

calmcrime已经回答的很好了,只是JS方式这里需要加上原来的高度
window.onscroll = function()
{
    $('test').style.top = 原高度+ (document.documentElement.scrollTop || document.body.scrollTop) + 'px' 
 }

学习了。 HTML code

nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


增加点人气~~~

多谢1楼,2楼...

用CSS多好。。。

过来结贴,哈哈哈...

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.