源码论坛,商业源码下载,尽在锦尚中国商业源码论坛

标题: div固定页面右下角实现 [打印本页]

作者: 洪七公    时间: 2022-6-20 23:30
标题: div固定页面右下角实现
今天写个客服弹窗源码的时候,用到固定的代码,记录一下发给大家,希望能用得到!

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>使用CSS将Div固定在窗口的右下角</title>
  5. <style>
  6. #INDEXT_RB_AD{
  7. clear:both; width:200px; height:100px; z-index:1000; overflow:hidden; border:1px #ccc solid;
  8. bottom:5px; right:5px;

  9. /* 火狐、Google浏览器只需要后面这一句代码即可 */
  10. position:fixed !important;

  11. /* 以下代码是针对IE6的 */
  12. _position:absolute;
  13. _top: expression( eval( document.documentElement.scrollTop + document.documentElement.clientHeight - this.offsetHeight - (parseInt(this.currentStyle.marginTop,10)||0) - (parseInt(this.currentStyle.marginBottom,10)||0) ) - (parseInt(this.currentStyle.bottom,10)||0) );
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div style="height:2000px;">使用CSS将Div固定在窗口的右下角</div>
  19. <div id="INDEXT_RB_AD" style="display:;">
  20. <div align="right" style=" width:100%; height:25px; line-height:25px; cursor:pointer; " οnclick="document.getElementById('INDEXT_RB_AD').style.display = 'none';">关闭</div>
  21. <div>这里是您要显示的内容</div>
  22. </div>
  23. </body>
  24. </html>

  25. =======================================================================
  26. 如果要将该功能写入js文件里,供网站多个页面同时调用,可以使用下列代码
  27. =======================================================================

  28. <script>
  29. //var RB_FLOAT_AD = "no"; //在不需要显示的页面加上此行代码
  30. if ( typeof(RB_FLOAT_AD) == "undefined" || RB_FLOAT_AD != "no" ){
  31. //输出CSS样式
  32. document.write('<style>#INDEXT_RB_AD{ clear:both; width:200px; height:100px; z-index:1000; overflow:hidden; border:1px #ccc solid; bottom:10px; right:5px; /* 火狐、Google浏览器只需要后面这一句代码即可 */ position:fixed !important; /* 以下代码是针对IE6的 */ _position:absolute; _top: expression( eval( document.documentElement.scrollTop + document.documentElement.clientHeight - this.offsetHeight - (parseInt(this.currentStyle.marginTop,10)||0) - (parseInt(this.currentStyle.marginBottom,10)||0) ) - (parseInt(this.currentStyle.bottom,10)||0) ); }</style>');
  33. //
  34. document.write('<div id="INDEXT_RB_AD" style="display:;"><div align="right" style=" width:100%; height:25px; line-height:25px; cursor:pointer;" οnclick="document.getElementById('INDEXT_RB_AD').style.display = 'none';">关闭</div><div>这里是您要显示的内容</div></div>');
  35. }
  36. </script>
复制代码





欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/) Powered by Discuz! X3.3