" alt="" /> test 我希望当我用鼠标浏览图像时显示该范围内我想要的任何内容,甚至是按钮或粗体文本的图像。像这样的EXAMPLE 提前致谢!-6ren">
gpt4 book ai didi

javascript - 将鼠标悬停在图像上时显示描述

转载 作者:行者123 更新时间:2023-12-01 07:20:56 25 4
gpt4 key购买 nike

我有这个 HTML :

<div class="left_area">
<div class="caption">
<a href="<?php echo $URL; ?>"><img src="<?php echo $images; ?>" alt="<?php echo $name; ?>" /></a>
<span>test</span></div>
</div>

我希望当我用鼠标浏览图像时显示该范围内我想要的任何内容,甚至是按钮或粗体文本的图像。像这样的EXAMPLE

提前致谢!

最佳答案

尝试这样的事情 - DEMO

CSS

.caption {
position: relative;
width: 300px;
cursor: pointer;
}

span {
display: none;
position: absolute;
left: 0;
top: 0;
background: rgba(0, 0, 0, .7);
height: 200px;
width: 300px;
color: #fff;
}

JS

$('.caption').on({
mouseover: function() {
$(this).find('span').fadeIn(200);
},

mouseout: function() {
$(this).find('span').stop().fadeOut(200);
},
})

关于javascript - 将鼠标悬停在图像上时显示描述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13845879/

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