是的,可以通过为不同的模态框添加不同的CSS类来实现。以下是一个示例:
HTML代码:
CSS代码:
/* 共同的模态框样式 */
.modal {
display: none; /* 默认隐藏 */
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
/* 模态框1的特殊样式 */
.modal-1 {
background-color: lightblue;
}
/* 模态框2的特殊样式 */
.modal-2 {
background-color: lightpink;
}
JavaScript代码:
// 打开模态框1
function openModal1() {
var modal1 = document.getElementById("modal1");
modal1.classList.add("modal-1");
modal1.style.display = "block";
}
// 关闭模态框1
function closeModal1() {
var modal1 = document.getElementById("modal1");
modal1.style.display = "none";
modal1.classList.remove("modal-1");
}
// 打开模态框2
function openModal2() {
var modal2 = document.getElementById("modal2");
modal2.classList.add("modal-2");
modal2.style.display = "block";
}
// 关闭模态框2
function closeModal2() {
var modal2 = document.getElementById("modal2");
modal2.style.display = "none";
modal2.classList.remove("modal-2");
}
在这个示例中,我们使用了id为"modal1"和"modal2"的两个不同的div元素作为模态框,并且为它们分别添加了不同的CSS类"modal-1"和"modal-2"。通过JavaScript的点击事件处理函数,我们可以控制模态框的显示和隐藏,并在需要时添加或移除相应的CSS类,从而实现不同的样式。
上一篇:不同的模式,但结果相同。