gpt4 book ai didi

jquery - 悬停链接将出现在图像上

转载 作者:太空宇宙 更新时间:2023-11-03 21:33:02 25 4
gpt4 key购买 nike

如果图像悬停,我希望我的链接显示在图像的中心。怎么做?我更喜欢使用纯 css,但如果需要 jquery 也没问题。

<div class="container">
<img src="an_img.jpg">
<div> <a href="a link">i want this link on center</a> </div>
</div>

CSS:

<style>

div.container { width: 200px; height: 200px; position: relative; }
div.container img { width: 100%; height: 100%; position: absolute; top: 0; }
div.container div { width: 100%; position: absolute; top: 0; display: none; }
div.container img:hover + div { display: block; }
div.container div:hover { display: block; }
</style>

就像这样: http://jsfiddle.net/gye6f9yh/

但我想要图像的垂直和水平中心。

最佳答案

这应该有所帮助! result

   .container{
position:relative;
}
.container div {
display:none;
border:solid ;
}
.container img:hover + div{
display:block;
position:absolute;
left:11%;
top:45%;
}
<div class="container" style="width: 202px;">
<img src="an_img.jpg" style="width: 202px;background-color:green">
<div> <a href="a link" style="color:red;">i want this link on center</a> </div>
</div>

关于jquery - 悬停链接将出现在图像上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28363182/

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