gpt4 book ai didi

html - 灯箱图片不居中

转载 作者:行者123 更新时间:2023-11-28 02:01:05 24 4
gpt4 key购买 nike

我的灯箱图片没有居中有问题。图像没有以页面为中心,也没有以它们所在的列为中心。我看不出在哪里可以将其居中,因为它看起来是正确的。我将不胜感激任何人的帮助。

网址是http://temp1.absolutehtml.co.uk/gallery.html

HTML

<a class="lightbox" href="#image1">
<img src="../images/pexels-photo (1).jpg" alt="image1"/>
</a>
<!-- lightbox -->
<div class="lightbox-target" id="image1">
<img src="../images/pexels-photo (1).jpg" alt="image1"/>
<a class="lightbox-close" href="#"></a>
</div>

CSS

/* Styles the lightbox, removes it from sight and adds the fade-in transition */

.lightbox-target {
position: fixed;
top: -100%;
width: 100%;
background: rgba(0,0,0,.7);
width: 100%;
opacity: 0;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
overflow: hidden;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */

.lightbox-target img {
margin: auto;
position: absolute;
top: 0;
left:0;
right:0;
bottom: 0;
max-height: 0%;
max-width: 0%;
border: 3px solid white;
box-shadow: 0px 0px 8px rgba(0,0,0,.3);
box-sizing: border-box;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Styles the close link, adds the slide down transition */

a.lightbox-close {
display: block;
width:50px;
height:50px;
box-sizing: border-box;
background: white;
color: black;
text-decoration: none;
position: absolute;
top: -80px;
right: 0;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:before {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(45deg);
-moz-transform:rotate(45deg);
-o-transform:rotate(45deg);
transform:rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:after {
content: "";
display: block;
height: 30px;
width: 1px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(-45deg);
-moz-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
transform:rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */

.lightbox-target:target {
opacity: 1;
top: 0;
bottom: 0;
}

.lightbox-target:target img {
margin-top: 4%;
max-height: 90%;
max-width: 90%;
margin-left: auto;
margin-right: auto;

}

.lightbox-target:target a.lightbox-close {
margin-top: 5%;
margin-right: 6%;
top: 0px;
}

最佳答案

图像在其容器内居中,但容器离开了屏幕。您将其设置为 position: fixedwidth: 100%,使其与视口(viewport)一样宽。但是您没有设置 leftright,因此它的水平位置就是该元素自然出现的位置。

添加这个可以解决你的问题:

.lightbox-target {
left: 0px;
}

关于html - 灯箱图片不居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49329559/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com