首页 > 语言 > JavaScript > 正文

jquery任意位置浮动固定层插件用法实例

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

这篇文章主要介绍了jquery任意位置浮动固定层插件用法,实例分析了jQuery浮动层插件的相关使用技巧,需要的朋友可以参考下

本文实例讲述了jquery任意位置浮动固定层插件用法。分享给大家供大家参考。具体分析如下:

说明:可以让指定的层浮动到网页上的任何位置,当滚动条滚动时它会保持在当前位置不变,不会产生闪动

2009-06-10修改:重新修改插件实现固定浮动层的方式,使用一个大固定层来定位

2009-07-16修改:修正IE6下无法固定在top上的问题

09-11-5修改:当自定义层的绝对位置时,加上top为空值时的判断

这次的方法偷自天涯新版页

经多次测试,基本上没bug~

调用:

1 无参数调用:默认浮动在右下角

$("#id").floatdiv();

2 内置固定位置浮动

 

 
  1. //右下角  
  2. $("#id").floatdiv("rightbottom");  
  3. //左下角  
  4. $("#id").floatdiv("leftbottom");  
  5. //右下角  
  6. $("#id").floatdiv("rightbottom");  
  7. //左上角  
  8. $("#id").floatdiv("lefttop");  
  9. //右上角  
  10. $("#id").floatdiv("righttop");  
  11. //居中  
  12. $("#id").floatdiv("middle");  

另外新添加了四个新的固定位置方法

middletop(居中置顶)、middlebottom(居中置低)、leftmiddle、rightmiddle

3 自定义位置浮动

$("#id").floatdiv({left:"10px",top:"10px"});

以上参数,设置浮动层在left 10个像素,top 10个像素的位置

 

 
  1. jQuery.fn.floatdiv=function(location){  
  2. //判断浏览器版本  
  3. var isIE6=false;  
  4. var Sys = {};  
  5. var ua = navigator.userAgent.toLowerCase();  
  6. var s;  
  7. (s = ua.match(/msie ([/d.]+)/)) ? Sys.ie = s[1] : 0;  
  8. if(Sys.ie && Sys.ie=="6.0"){  
  9. isIE6=true;  
  10. }  
  11. var windowWidth,windowHeight;//窗口的高和宽  
  12. //取得窗口的高和宽  
  13. if (self.innerHeight) {  
  14. windowWidth=self.innerWidth;  
  15. windowHeight=self.innerHeight;  
  16. }else if (document.documentElement&&document.documentElement.clientHeight) { 
  17. windowWidth=document.documentElement.clientWidth;  
  18. windowHeight=document.documentElement.clientHeight;  
  19. else if (document.body) {  
  20. windowWidth=document.body.clientWidth;  
  21. windowHeight=document.body.clientHeight;  
  22. }  
  23. return this.each(function(){  
  24. var loc;//层的绝对定位位置  
  25. var wrap=$("<div></div>");  
  26. var top=-1;  
  27. if(location==undefined || location.constructor == String){  
  28. switch(location){  
  29. case("rightbottom")://右下角  
  30. loc={right:"0px",bottom:"0px"};  
  31. break;  
  32. case("leftbottom")://左下角  
  33. loc={left:"0px",bottom:"0px"};  
  34. break;  
  35. case("lefttop")://左上角  
  36. loc={left:"0px",top:"0px"};  
  37. top=0;  
  38. break;  
  39. case("righttop")://右上角  
  40. loc={right:"0px",top:"0px"};  
  41. top=0;  
  42. break;  
  43. case("middletop")://居中置顶  
  44. loc={left:windowWidth/2-$(this).width()/2+"px",top:"0px"};  
  45. top=0;  
  46. break;  
  47. case("middlebottom")://居中置低  
  48. loc={left:windowWidth/2-$(this).width()/2+"px",bottom:"0px"};  
  49. break;  
  50. case("leftmiddle")://左边居中  
  51. loc={left:"0px",top:windowHeight/2-$(this).height()/2+"px"};  
  52. top=windowHeight/2-$(this).height()/2;  
  53. break;  
  54. case("rightmiddle")://右边居中  
  55. loc={right:"0px",top:windowHeight/2-$(this).height()/2+"px"};  
  56. top=windowHeight/2-$(this).height()/2;  
  57. break;  
  58. case("middle")://居中  
  59. var l=0;//居左  
  60. var t=0;//居上  
  61. l=windowWidth/2-$(this).width()/2;  
  62. t=windowHeight/2-$(this).height()/2;  
  63. top=t;  
  64. loc={left:l+"px",top:t+"px"};  
  65. break;  
  66. default://默认为右下角  
  67. location="rightbottom";  
  68. loc={right:"0px",bottom:"0px"};  
  69. break;  
  70. }  
  71. }else{  
  72. loc=location;  
  73. alert(loc.bottom);  
  74. var str=loc.top;  
  75. //09-11-5修改:加上top为空值时的判断  
  76. if (typeof(str)!= 'undefined'){  
  77. str=str.replace("px","");  
  78. top=str;  
  79. }  
  80. }  
  81. /*fied ie6 css hack*/ 
  82. if(isIE6){  
  83. if (top>=0)  
  84. {  
  85. wrap=$("<div style=/"top:e­xpression(documentElement.scrollTop+"+top+");/"></div>");  
  86. }else{  
  87. wrap=$("<div style=/"top:e­xpression(documentElement.scrollTop+documentElement.clientHeight-this.offsetHeight);/"></div>"); 
  88. }  
  89. }  
  90. $("body").append(wrap);  
  91. wrap.css(loc).css({position:"fixed",z_index:"999"});  
  92. if (isIE6)  
  93. {  
  94. wrap.css("position","absolute");  
  95. //没有加这个的话,ie6使用表达式时就会发现跳动现象  
  96. //至于为什么要加这个,还有为什么要加nothing.txt这个,偶也不知道,希望知道的同学可以告诉我  
  97. $("body").css("background-attachment","fixed").css("background-image","url(n1othing.txt)");  
  98. }  
  99. //将要固定的层添加到固定层里  
  100. $(this).appendTo(wrap);  
  101. });  
  102. }; 

完整实例代码点击此处本站下载。

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

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

图片精选