日期:2014-05-16 浏览次数:20363 次
#winpop { width: 400px; height: 0px; position: fixed; right: 0; bottom: 0; border: 1px solid #999999; margin: 0; padding: 1px; overflow: auto; display: none; background: #FFFFFF; }
<!doctype html> <html> <head> <meta charset="gb2312" /> <style> body { height:1850px; } div { width:100px; height:100px; border:1px solid red; position:absolute; bottom:10px; right:10px; } </style> </head> <body> <div id="test">123</div> <script> function $(o){return document.getElementById(o)} window.onscroll = function(){ $('test').style.top = document.documentElement.clientHeight + (document.documentElement.scrollTop || document.body.scrollTop) - 110 +'px' } </script> </body> </html>