漂浮效果,就是在网页右边随上下滚动而滚动的效果。一般常用于TOP上!
<style> body{ position:relative; } .fixed{ right:20px; top:10px; position:fixed; +position:absolute; +top:expression(eval(document.body.scrollTop)+10); } </style> <div class=fixed><img src=http://www.webjx.com/images/logo.gif></div> <div style=height:1000px>x</div>
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]