我是新的JS,我正试图使用2模态图像在同一页上与此代码:
https://www.w3schools.com/howto/howto_css_modal_images.asp
有了这个HTML,JS和CSS视图大小调整只适用于一个图像,不知道如何使它在同一页上的两个图像:
我有第一个html代码两次为每个图像:
超文本:
<img id="myImg" src="img_fjords.jpg" alt="Trolltunga, Norway" width="300" height="200">
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption"></div>
</div>
大图片. css中的CSS:
#myImg {
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
#myImg:hover {opacity: 0.7;}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.modal-content {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
}
#caption {
margin: auto;
display: block;
width: 80%;
max-width: 700px;
text-align: center;
color: #ccc;
padding: 10px 0;
height: 150px;
}
.modal-content, #caption {
animation-name: zoom;
animation-duration: 0.6s;
}
@keyframes zoom {
from {transform:scale(0)}
to {transform:scale(1)}
}
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
@media only screen and (max-width: 700px){
.modal-content {
width: 100%;
}
}
和JS:
var modal = document.getElementById('myModal');
var img = document.getElementById('myImg');
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
}
var span = document.getElementsByClassName("close")[0];
span.onclick = function() {
modal.style.display = "none";
}
4条答案
按热度按时间mbyulnm01#
您所拥有的代码大部分都可以工作,但是您专门引用了一个图像。(),您不允许使用第二个图像。我对代码做了一点修改--HTML现在有几个用于示例的图像,JS现在使用document.getElementsByClassName()来支持多个图像。此外,我正在遍历图像列表,并将该事件处理程序附加到每个图像。See it as a fiddle,或者如下所示:
z9ju0rcb2#
也不需要复制modal div,您可以使用
getElementsByClassName
选择器使用类名来选择两个图像,然后将click事件绑定到每个图像:下面是一个工作示例:
一个一个二个一个一个一个三个一个一个一个一个一个四个一个
66bbxpm53#
你必须应用类名“.modal-content”到你的第二张图片上。动画的发生是因为CSS关键帧。
或者作为替代-如果你的第二个图像有一个不同的类名或ID添加到下面的CSS代码
}
dwbf0jvd4#
这是一个老问题,但我提出了自己的解决方案,使用
data-modal
HTML属性。注:这不包括包含标题的方法,但如果需要,可以将
content.appendChild(new Image()).src = img.src;
行替换为maybe:然后,您可以添加一些CSS来设置图形的样式,也许可以使用
text-align: center
。