W3.CSS提供以下下拉類:
類 | 定義 |
---|---|
W3-下拉懸停 | 可懸停的下拉元素 |
w3-dropdown-content | 要顯示的下拉部分 |
w3-下拉單擊 | 可點(diǎn)擊的下拉元素 |
w3-dropdown-hover 類定義了一個(gè) hoverable 下拉元件。
w3-dropdown-content 類定義要顯示的下拉內(nèi)容。
<div class="w3-dropdown-hover">
<button class="w3-button">Hover Over Me!</button>
<div class="w3-dropdown-content w3-bar-block w3-border">
<a href="#" class="w3-bar-item w3-button">鏈接 1</a>
<a href="#" class="w3-bar-item w3-button">鏈接 2</a>
<a href="#" class="w3-bar-item w3-button">鏈接 3</a>
</div>
</div>
可懸浮元素和下拉內(nèi)容元素都可以是任何 HTML 元素。
在上面的示例中,懸停元素是 <button>,下拉內(nèi)容是 <div>。
在下一個(gè)示例中,懸停元素是 <p>,下拉內(nèi)容是 <span>:
<div class="w3-bar w3-light-grey">
<a href="#" class="w3-bar-item w3-button">主頁(yè)</a>
<a href="#" class="w3-bar-item w3-button">鏈接1</a>
<div class="w3-dropdown-hover">
<button class="w3-button">Dropdown</button>
<div class="w3-dropdown-content w3-bar-block w3-card-4">
<a href="#" class="w3-bar-item w3-button">鏈接 1</a>
<a href="#" class="w3-bar-item w3-button">鏈接 2</a>
<a href="#" class="w3-bar-item w3-button">鏈接 3</a>
</div>
</div>
</div>
注意:在本教程的后面,您將了解有關(guān)導(dǎo)航欄的更多信息。
<div class="w3-dropdown-click">
<button onclick="myFunction()" class="w3-button w3-black">點(diǎn)擊我!</button>
<div id="Demo" class="w3-dropdown-content w3-bar-block w3-border">
<a href="#" class="w3-bar-item w3-button">鏈接 1</a>
<a href="#" class="w3-bar-item w3-button">鏈接 2</a>
<a href="#" class="w3-bar-item w3-button">鏈接 3</a>
</div>
</div>
<script>
function myFunction() {
var x = document.getElementById("Demo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
<div class="w3-dropdown-hover">
<img src="img_snowtops.jpg" alt="Norway" style="width:20%">
<div class="w3-dropdown-content" style="width:300px">
<img src="img_snowtops.jpg" alt="Norway" style="width:100%">
</div>
</div>
<div class="w3-dropdown-click">
<button onclick="myFunction()" class="w3-button">點(diǎn)擊我!</button>
<div id="Demo" class="w3-dropdown-content w3-bar-block w3-animate-zoom">
<a href="#" class="w3-bar-item w3-button">鏈接 1</a>
<a href="#" class="w3-bar-item w3-button">鏈接 2</a>
<a href="#" class="w3-bar-item w3-button">鏈接 3</a>
</div>
</div>
更多建議: