CSS实现侧边栏导航

小鱼儿 2021-05-03 15:53 771阅读 0赞
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style type="text/css"> /*隐藏checked复选框*/ #sidemenu{ display: none; } #sidemenu:checked + aside { /*为被选中的sidemenu后的aside设置属性(紧邻)*/ left: 0; /*点击按钮即选中checked后,侧边栏位置变为贴着左边,配合ease-out使用,有渐变滑出的效果*/ } #sidemenu:checked ~ #wrap { /*为被选中的sidemenu后的wrap设置属性(非紧邻)*/ padding-left: 220px; } aside { /*侧边栏,初始位置为-200px,即隐藏效果*/ position: absolute; top: 0; bottom: 0; left: -200px; width: 200px; background: black; transition: 0.2s ease-out; /*动画效果的执行方式是ease-out,即侧边栏滑动效果为渐变式,而不是生硬的突然变化*/ } h2 { color: white; text-align: center; font-size: 2em; } /*控制侧边栏进出的按钮(外部包裹)*/ #wrap { margin-left: 20px; padding: 10px; transition: 0.2s ease-out; } /*控制侧边栏进出的按钮(内部文字样式)*/ label { /*控制侧边栏进出的按钮*/ background: white; border-radius: 70px; color: orange; cursor: pointer; display: block; font-family: Courier New; font-size: 2em; width: 1.5em; height: 1.5em; line-height: 1.5em; text-align: center; display: inline-block; } label:hover { background: #000; } #sideul li { list-style: none; color: white; width: 100%; height: 1.8em; font-size: 1.5em; text-align: center; } a { text-decoration: none; } #sideul li:hover { color: orange; } </style>
  7. </head>
  8. <body>
  9. <input type='checkbox' id='sidemenu'>
  10. <aside>
  11. <h2>主菜单</h2>
  12. <br />
  13. <ul id="sideul">
  14. <a href="##">
  15. <li>首页</li>
  16. </a>
  17. <a href="##">
  18. <li style="color: orange;">导航1</li>
  19. </a>
  20. <a href="##">
  21. <li>导航2</li>
  22. </a>
  23. <a href="##">
  24. <li>导航3</li>
  25. </a>
  26. <a href="##">
  27. <li>导航4</li>
  28. </a>
  29. <a href="##">
  30. <li>导航5</li>
  31. </a>
  32. <a href="##">
  33. <li>导航6ʳ</li>
  34. </a>
  35. </ul>
  36. </aside>
  37. <div id='wrap'>
  38. <label id='sideMenuControl' for='sidemenu'></label>
  39. <!--for 属性规定 label 与哪个表单元素绑定,即将这个控制侧边栏进出的按钮与checkbox绑定-->
  40. </div>
  41. </body>
  42. </html>

这里写图片描述
这里写图片描述

发表评论

表情:
评论列表 (有 0 条评论,771人围观)

还没有评论,来说两句吧...

相关阅读