gpt4 book ai didi

javascript - 如何在图像上显示文字

转载 作者:太空宇宙 更新时间:2023-11-04 00:02:26 26 4
gpt4 key购买 nike

我想在图像上显示文本。每当有人将鼠标悬停在图像上时。

我的 Div block 是:

<div class="MainDIV">
<br><br><br>
<div class="popular_stores" align="center">

<span style="font-size: 12pt;">Browse our list of stores that we have coupons, coupon codes, and promo codes for.
</span>
<br>
<ul>
<li>
<img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR31R-rZO7MBzgGMrZlpa7C0-tx3CmzVz6pha7kt8Fw6PjpsMGENg" style="width: 100px;height: 50px;" >
</li>
<li>
<img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR31R-rZO7MBzgGMrZlpa7C0-tx3CmzVz6pha7kt8Fw6PjpsMGENg" style="width: 100px;height: 50px;" >
</li>
<li>
<img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR31R-rZO7MBzgGMrZlpa7C0-tx3CmzVz6pha7kt8Fw6PjpsMGENg" style="width: 100px;height: 50px;" >
</li>
</ul>
</div></div>

其余的 CSS 和 JavaScript 函数是:

<script src="http://code.jquery.com/jquery-1.9.1.min.js" type="text/javascript"></script>
<script type="text/javascript">

$('.drama').mouseover(function(){
alert("dss");
var tt = $(this).parent().find('.toolTip');
tt.html($(this).attr('title'));
tt.show();
});
$('.drama').mouseout(function(){
var tt = $(this).parent().find('.toolTip');
tt.hide();
});

</script>


<style type="text/css">

body {
text-align: center;
}

.MainDIV{
padding:0;
width:700px;
display: inline-block;
background-color:white;
}

.MainDIV ul
{
list-style-type: none;
}

.MainDIV ul li {
display: inline-block;
padding : 1em;
}

.MainDIV ul li img
{

padding: .2em ;
border-radius: 10px;
-moz-border-radius: 10px;
background-color: #F5F5E3;
}

ul li div{display:none; background:white; opacity:.5; position:absolute;}

这里显示了我正在尝试做的事情。请看一看:click here

与此页面类似,我想在有人将鼠标悬停在图像上时在图像上显示文本。有人可以帮帮我吗...

最佳答案

我用我能想到的最简单的方法制作了一个 fiddle 。

$('#hover1').mouseover(function(){
$('#hoverDiv1').css('opacity', 1)
});


$('#hover1').mouseout(function(){
$('#hoverDiv1').css('opacity', 0)
});

请看这个Fiddle

悬停效果未正确定位,因为需要定义“li”。它只是为了展示一种简单的 jQuery 方式。

最佳

关于javascript - 如何在图像上显示文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16153059/

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