2 回答

TA貢獻(xiàn)1816條經(jīng)驗(yàn) 獲得超4個(gè)贊
這是一個(gè)基于您的代碼的小型可重現(xiàn)解決方案: https://jsfiddle.net/hneromu4/5/
我添加了一個(gè)固定到鏈接元素的類,當(dāng)我們調(diào)整窗口大小時(shí),這些元素應(yīng)該保留:
<section id="header_nav">
<nav id="nav">
<ul>
<li class="fixed"><a href="">Home</a></li>
<li><a href="">Research</a></li>
<li><a href="">Game-dev</a></li>
<li><a href="photography">Photography</a></li>
<li class="fixed hamburguer"><a href="javascript:void(0);" class="icon" onclick="myFunction()"><i class="fa fa-bars"></i></a></li>
</ul>
</nav>
</section>
我還調(diào)整了你的 css 和 js。

TA貢獻(xiàn)1827條經(jīng)驗(yàn) 獲得超8個(gè)贊
在你的 CSS 和 HTML 中,我做了一些修改,因?yàn)槟愕臐h堡菜單位于你試圖隱藏的同一個(gè)東西中,這并不是一個(gè)好主意,我還稍微調(diào)整了你的 CSS,因?yàn)槟銓⑽恢迷O(shè)置為相對(duì)位置,但沒(méi)有設(shè)置顯示阻止。希望這可以幫助!
CSS(第 2525 - 2547 行):
? ? ? ? @media screen and (max-width: 600px) {
? ? ? ? ? ? ? #nav {display: none;}
? ? ? ? ? ? ? #header_nav a.icon {
? ? ? ? ? ? float: right;
? ? ? ? ? ? display: block;
? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
? ? ? ? @media screen and (max-width: 600px) {
? ? ? ? ? #nav.responsive {position: relative;display: block;}
? ? ? ? ? #header_nav.responsive a.icon {
? ? ? ? ? ? position: absolute;
? ? ? ? ? ? right: 0;
? ? ? ? ? ? top: 0;
? ? ? ? ? }
? ? ? ? ? #nav.responsive a {
? ? ? ? ? ? float: none;
? ? ? ? ? ? display: block;
? ? ? ? ? ? text-align: left;
? ? ? ? ? }
? ? ? ? }
HTML:
<!-- Header Navigation Menu -->
? ? ? ? ? ? <section id="header_nav">
? ? ? ? ? ? ? ? <a class="icon" onclick="myFunction()"><i class="fa fa-bars"></i></a><nav id="nav" class="header_nav">
? ? ? ? ? ? ? ? ? ? <ul>
? ? ? ? ? ? ? ? ? ? ? ? <li><a href="index"><p style="color:white">Home</p></a></li>
? ? ? ? ? ? ? ? ? ? ? ? <li><a href=""><p style="color:white">Research</p></a></li>
? ? ? ? ? ? ? ? ? ? ? ? <li><a href=""><p style="color:white">Game-dev</p></a></li>
? ? ? ? ? ? ? ? ? ? ? ? <li><a href="photography"><p style="color:white">Photography</p></a></li>
? ? ? ? ? ? ? ? ? ? </ul>
? ? ? ? ? ? ? ? </nav>
? ? ? ? ? ? </section>
- 2 回答
- 0 關(guān)注
- 227 瀏覽
添加回答
舉報(bào)