Blogger Information
Blog 8
fans 0
comment 0
visits 4368
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
固定导航栏
风轻云淡
Original
540 people have browsed it
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>固定导航栏</title>
  6. <style>
  7. *{
  8. padding: 0;
  9. margin: 0;
  10. }
  11. #nav{
  12. position: absolute;
  13. }
  14. .img{
  15. width: 1500px;
  16. position: absolute;
  17. }
  18. div{
  19. height: 500px;
  20. width: 1000px;
  21. margin: 0 auto;
  22. }
  23. .box1{
  24. background-color: red;
  25. }
  26. .box2{
  27. background-color: pink;
  28. }
  29. .box3{
  30. background-color: darkcyan;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <nav id="nav">
  36. <img class="img" id="img" src="project/img/nav.png">
  37. </nav>
  38. <div class="box1">
  39. </div>
  40. <div class="box2">
  41. </div>
  42. <div class="box3">
  43. </div>
  44. <script>
  45. var oimg=document.getElementById('img')
  46. window.onscroll= function (){
  47. var ox= document.documentElement.scrollTop
  48. var oy= document.documentElement.scrollLeft
  49. oimg.style.top=ox+'px'
  50. oimg.style.left=oy+'px'
  51. }
  52. </script>
  53. </body>
  54. </html>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post