我试图让“sp”和“bg” div 始终居中,但我似乎做不到。它居中,直到窗口的宽度超过图像的宽度。之后,图像停留在页面的左侧。我想要改变的是图像应该以所有宽度移动到页面的中心。理想的答案是保持位置:绝对。
谢谢!
<div id="slider-wrapper">
<div id="slider">
<div class="bg"> <width="100%" height="100%"/></div>
<div class="sp"> <img src="../imgs/01_done.png" width="100%" height=100%"/></div>
</div>
</div>
CSS:
#slider-wrapper{display:none;height:100%;position:fixed;width:100%;z-index:1000000}
#slider {position:fixed;width:100%;height:100%}
#slider .bg {position:absolute; max-height: 100%; display: none;}
#slider .sp {position:absolute;z-index:10000; max-height: 100%; display: none;}
编辑:减少一些代码以使其更简单。