2024-06-02 關於我們-下拉式選單的切版

2024-06-02 關於我們-下拉式選單的切版

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
  <!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JavaScript 系列三:練習6 ── dropdown 下拉式選單</title>
<link rel="stylesheet" href="./06_js_dropdown.css">
</head>

<body>

<div class="nav_container">
<a href="#">首頁</a>
<a href="#">全部商品</a>
<a href="#">全部品牌</a>
<div class="about_wrap">
<div class="about_click">
<a href="#">關於我們 </a>
</div>
<div class="about">
<a href="#">企業宗旨</a>
<a href="#">團隊介紹</a>
<a href="#">創業故事</a>
</div>
</div>

</div>


<script src="./06_js_dropdown.js"></script>
</body>

</html>

「關於我們」的 display 設定為 none, 不顯示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
  .nav_container a + .about_wrap{
display: inline-block;
}

.about_click{
position: relative;
}
.about {
display: none;
position: absolute;
}
.about a{
display: block;
}

「關於我們」的 display default 顯示:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
.nav_container a + .about_wrap{
display: inline-block;
}

.about_click{
position: relative;
}
.about {
/* display: none; */
position: absolute;
}
.about a{
display: block;
}