首页 > 语言 > JavaScript > 正文

jQuery仿gmail实现fixed布局的方法

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

这篇文章主要介绍了jQuery仿gmail实现fixed布局的方法,涉及jQuery操作页面元素属性的相关技巧,需要的朋友可以参考下

本文实例讲述了jQuery仿gmail实现fixed布局的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  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=utf-8" /> 
  6. <title>fixed bar demo</title> 
  7. <style type="text/css" media="screen"
  8. body{ 
  9. margin:0; 
  10. height:2000px; 
  11. #top{ 
  12. background-color:#333; 
  13. height:80px; 
  14. #nav{ 
  15. background-color:#999; 
  16. height:30px; 
  17. position:absolute; 
  18. top:80px; 
  19. width:100%; 
  20. </style> 
  21. <script src="jquery-1.6.2.min.js" type="text/javascript"></script> 
  22. <script type="text/javascript"
  23. $(function(){ 
  24. $(window).scroll(function(){ 
  25. var scrollTop = $(window).scrollTop(); 
  26. if(scrollTop < 80) 
  27. $("#nav").css('top''80px'); 
  28. else 
  29. $("#nav").css('top', scrollTop +'px'); 
  30. }); 
  31. }); 
  32. </script> 
  33. </head> 
  34. <body> 
  35. <div id="top"
  36. </div> 
  37. <div id="nav"
  38. </div> 
  39. </body> 
  40. </html> 

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

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

图片精选