gpt4 book ai didi

javascript - 在可调整大小的窗口中使用 Z-Index 居中图像?

转载 作者:太空宇宙 更新时间:2023-11-03 23:59:53 28 4
gpt4 key购买 nike

在我决定将一张图片放在另一张图片后面并使用 z-index 之前,我的图片一直完美居中。我使用的是相对定位,但在移动到绝对定位后,它向左对齐。

即使调整了窗口大小,我如何使它居中?

这是我在 jsfiddle 中的代码:http://jsfiddle.net/WJPhz/

HTML

<script src="http://code.jquery.com/jquery-1.4.4.min.js" type="text/javascript">  </script> 
<center>
<div id="sign" style="z-index:1">
<img src="http://s9.postimg.org/bql0ikclb/dope.png" alt"">
</div>
<div id="numbers" style="z-index:0">
<img src="http://s9.postimg.org/z3j212sov/image.png" alt"">
</div>
</center>

CSS

#sign {
cursor: pointer;
max-width: 241px;
position:absolute;
}

#numbers {
cursor: pointer;
max-width: 241px;
position:absolute;
}

Javascript

$(document).ready(function() {
$('#sign').hide().delay(1000).fadeIn(3000);
$('#numbers').hide().delay(2000).fadeIn(3000);

$("#sign").click(function() {
$('#sign').fadeOut(3000);
});
});

最佳答案

解决方法是将您的图像放在另一个 div 中并使该 div 居中:

html

<div class="center">
<div id="sign">
<img src="http://s9.postimg.org/bql0ikclb/dope.png" alt"" />
</div>
<div id="numbers">
<img src="http://s9.postimg.org/z3j212sov/image.png" alt"" />
</div>
</div>

CSS

.center {
position:relative;
max-width: 241px;
margin:0 auto;
}

#sign {
cursor: pointer;
max-width: 241px;
position:absolute;
top:0;
left:0;
z-index:2;
}

#numbers {
cursor: pointer;
max-width: 241px;
position:absolute;
top:0;
left:0;
z-index:1;
}

http://jsfiddle.net/peteng/WJPhz/2/

关于javascript - 在可调整大小的窗口中使用 Z-Index 居中图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17210430/

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