首页 > 语言 > JavaScript > 正文

javascript实现的固定位置悬浮窗口实例

2024-05-06 16:19:01
字体:
来源:转载
供稿:网友

这篇文章主要介绍了javascript实现的固定位置悬浮窗口,以一个完整实例形式详细分析了javascript实现固定位置悬浮窗口的相关技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了javascript实现的固定位置悬浮窗口。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  3. <html xmlns="http://www.w3.org/1999/xhtml"> 
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  6. <title>Fixed固定位置的悬浮</title> 
  7. <style> 
  8. * { font-size:12px; font-family:Verdana,宋体; } 
  9. html, body { margin:0px; padding:0px; overflow:hidden; } 
  10. .b { margin:0px; padding:0px; overflow:auto; } 
  11. .line0 { line-height:20px; background-color:lightyellow; 
  12. padding:0px 15px; } 
  13. .line1 { line-height:18px; background-color:lightblue; 
  14. padding:0px 10px; } 
  15. .w { position:absolute; right:10px; bottom:10px; width:160px;  
  16. height:240px; overflow:hidden; border:2px groove #281; 
  17. cursor:default; -moz-user-select:none; } 
  18. .t { line-height:20px; height:20px; width:160px; 
  19. overflow:hidden; background-color:#27C; color:white; 
  20. font-weight:bold; border-bottom:1px outset blue; 
  21. text-align:center; } 
  22. .winBody { height:218px; width:160px; overflow-x:hidden; 
  23. overflow-y:auto; border-top:1px inset blue; 
  24. padding:10px; text-indent:10px; background-color:white; 
  25. </style> 
  26. </head> 
  27. <body> 
  28. <div class="w"> 
  29. <div class="t">Demo Win - Fixed</div> 
  30. <div class="winBody">Hello world</div> 
  31. <div>http://www.vevb.com/</div> 
  32. </div> 
  33. </body> 
  34. <script> 
  35. //测试用,随机产生一定的内容 
  36. for(var i=0; i<400; i++)document.write("<div class=/"line"+(i%2)+"/">"+(new Array(20)).join((Math.random()*1000000).toString(36)+" ")+"<//div>"); 
  37. //代码如下: 
  38. new function(w,b,c,d,o){ 
  39. d=document;b=d.body;o=b.childNodes;c="className"
  40. b.appendChild(w=d.createElement("div"))[c]= "b"; 
  41. for(var i=0; i<o.length-1; i++)if(o[i][c]!="w")w.appendChild(o[i]),i--; 
  42. (window.onresize = function(){ 
  43. w.style.width = d.documentElement.clientWidth + "px"; 
  44. w.style.height = d.documentElement.clientHeight + "px"; 
  45. })(); 
  46. </script> 
  47. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选