博主信息
博文 16
粉丝 0
评论 1
访问量 13449
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
固定导航栏
浅若夏沫
原创
691人浏览过
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>固定导航栏</title>
  8. <style>
  9. *{
  10. margin:0;
  11. padding:0;
  12. }
  13. #one{
  14. background:goldenrod;
  15. height:100px;
  16. width:500px;
  17. font-size:20px;
  18. }
  19. #two{
  20. background:rgb(109, 240, 245);
  21. height:500px;
  22. width:500px;
  23. font-size:20px;
  24. }
  25. #three{
  26. background:rgb(247, 157, 194);
  27. height:500px;
  28. width:500px;
  29. font-size:20px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <div id="one">这是顶部</div>
  35. <div id="two">这是中间</div>
  36. <div id="three">这是尾部</div>
  37. <script>
  38. window.onload = function() {
  39. var one = document.getElementById('one');
  40. var two = document.getElementById('two');
  41. var three = document.getElementById('three');
  42. window.onscroll=function(){
  43. if(document.documentElement.scrollTop >= one.offsetHeight ){
  44. one.style.cssText="position:fixed;top:0px;";
  45. two.style.marginTop = one.offsetHeight+"px";
  46. }else {
  47. one.style.cssText="position:static;";
  48. two.style.marginTop ='0px';
  49. }
  50. }
  51. }
  52. </script>
  53. </body>
  54. </html>

批改老师:PHPzPHPz

批改状态:合格

老师批语:
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学