【发布时间】:2021-09-17 04:57:22
【问题描述】:
我正在处理此照片库,单击图像缩略图后会打开一个模式以全尺寸显示图像。
模态效果很好,但是当图像高度不足时,图像不会显示在中心。中心是指垂直。在水平方向上,它完全位于中心。
模态代码取自W3School's网站,我通过删除标题更改了html和css。
我尝试了什么:
我尝试通过在.modal 类中添加以下代码来使模态居中:
top:50%;
left:50%;
transform:translate(-50%, -50%);
也试过margin: 0 auto。但似乎没有任何效果。
这是模态框的工作版本,其图像未垂直居中:
// Get the modal
const modal = document.querySelector(".modal");
// Get the image and insert it inside the modal - use its "alt" text as a caption
const img = document.querySelectorAll(".myImg");
const modalImg = document.querySelector(".img01");
img.forEach((item) => {
item.onclick = function(e) {
modal.style.display = "block";
modalImg.src = e.target.src;
}
});
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = 'none';
}
}
.myImg {
border-radius: 5px;
cursor: pointer;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.myImg:hover {
opacity: 0.7;
}
.modal {
display: none;
position: fixed;
z-index: 999;
padding-top: 35px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.9);
}
/* Modal Content (image) */
.modal-content {
margin: auto;
display: block;
}
/* Add Animation */
.modal-content {
-webkit-animation-name: zoom;
-webkit-animation-duration: 0.6s;
animation-name: zoom;
animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
from {
-webkit-transform: scale(0)
}
to {
-webkit-transform: scale(1)
}
}
@keyframes zoom {
from {
-webkit-transform: scale(0);
transform: scale(0)
}
to {
-webkit-transform: scale(1);
transform: scale(1)
}
}
/* The Close Button */
.close {
position: absolute;
top: 15px;
right: 35px;
color: #f1f1f1;
font-size: 40px;
font-weight: bold;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.close:hover,
.close:focus {
color: #bbb;
text-decoration: none;
cursor: pointer;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<img class="myImg" src="https://lazykcamping.com/assets/Slide-3-Field.jpg" style="width:100%;max-width:500px">
<!-- The Modal -->
<div class="modal">
<span class="close">×</span>
<img class="modal-content img01">
</div>
如何垂直居中?
【问题讨论】:
标签: javascript html jquery css css-position