1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
| <!DOCTYPE html> <html lang="en">
<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>移动端隐藏式menu</title> </head> <style> html, body { font-size: 14px; }
body, h2 { margin: 0; padding: 0; }
a { text-decoration: none; }
.wrap { position: relative; width: 400px; margin: 0 auto; background-color: #efefef; }
.fixed-nav { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 56px; background-color: black; display: flex; text-align: center }
.fixed-nav a { flex-grow: 1; color: #fff; }
.global-nav { display: none; position: absolute; left: -100%; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, .7); text-align: center; z-index: 10; }
.global-nav .logo { color: #fff; font-size: 2rem; margin: 2rem auto 1rem; }
.global-nav .global-menu { width: 70%; margin: 0 auto; }
.global-nav a { display: block; line-height: 40px; background-color: antiquewhite; border-bottom: 1px solid #efefef; }
.global-nav a:first-of-type { border-top-left-radius: 6px; border-top-right-radius: 6px; }
.global-nav a:last-of-type { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; }
#menu { display: none; }
#menu:checked~.global-nav { display: block; transform: translateX(100%); }
.menu-btn { position: absolute; right: 0; bottom: 0; z-index: 12; width: 60px; text-align: center; line-height: 56px; color: #fff; background-color: royalblue; }
.menu-btn:before { content: 'Menu'; }
#menu:checked~.menu-btn:before { content: 'Close'; }
.header-wrap { line-height: 50px; }
.body-wrap { height: 300px; background-color: antiquewhite; }
.footer-wrap { height: 100px; background-color: bisque; } </style>
<body>
<div class="wrap"> <div class="fixed-nav"> <a href="#">首页</a> <a href="#">下载</a> </div> <input type="checkbox" id="menu" /> <label for="menu" class="menu-btn"></label> <div class="global-nav"> <div class="logo">我是LOGO</div> <div class="global-menu"> <a href="#">首页</a> <a href="#">关于我们</a> <a href="#">产品中心</a> </div> </div> <div class="header-wrap"> <h2>我是title</h2> </div> <div class="body-wrap"> hello,it's test now! </div> <div class="footer-wrap"> 这里是底部 </div> </div> </body>
</html>
|