色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

html點擊設置彈框

夏志豪1年前7瀏覽0評論

在網頁設計中,經常出現需要用戶點擊出現彈窗的情況,這種彈框一般用來進行設置或者提供一些新的操作方式。而HTML提供了一種方便的方式來實現這種彈框,下面我們就來看一下怎么實現點擊設置彈框:

<!DOCTYPE html>
<html>
<head>
	<title>點擊彈框示例</title>
	<style>
.popup {
background-color: #fff;
border: 1px solid #000;
display: none;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
z-index: 999;
}
.overlay {
background-color: rgba(0, 0, 0, 0.5);
display: none;
height: 100%;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 998;
}
	</style>
</head>
<body>
	<button id="openPopup">打開設置</button>
	<div class="popup">
<h2>設置頁面</h2>
<form>
<label>用戶名</label>
<input type="text" name="username"><br><br>
<label>密碼</label>
<input type="password" name="password"><br><br>
<button type="submit">提交</button>
</form>
<button id="closePopup">關閉</button>
	</div>
	<div class="overlay"></div>
	<script>
document.getElementById("openPopup").addEventListener("click", function() {
document.querySelector(".popup").style.display = "block";
document.querySelector(".overlay").style.display = "block";
});
document.getElementById("closePopup").addEventListener("click", function() {
document.querySelector(".popup").style.display = "none";
document.querySelector(".overlay").style.display = "none";
});
	</script>
</body>
</html>

在上面的代碼中,我們首先定義了一個按鈕和一個包含表單和關閉按鈕的彈框,然后使用CSS設置了彈框的樣式和遮罩層的樣式。最后使用JavaScript來實現按鈕點擊后彈框出現,關閉按鈕點擊后彈框消失和遮罩層消失。

總體來說,通過HTML、CSS和JavaScript的配合,實現點擊設置彈框是非常簡單的。希望以上代碼能對大家的網頁設計有所啟發。