我有这个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
提前致谢!
答案 0 :(得分:2)
尝试这样的事情 - 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);
},
})
答案 1 :(得分:1)
试试这个
$(document).ready(function(){
$('a','.caption').mouseenter(function(){
$('span',$(this).parent()).show();
}).mouseleave(function(){
$('span',$(this).parent()).hide();
});
});
答案 2 :(得分:0)
您可以在CSS中执行此操作
<div class="image">
<p class="caption">Some info related the pic</p>
<img src="http://i.imgur.com/VMaxsb.jpg" />
</div>
.image {float: left; position: relative;}
.image .caption {width: 100%; height: 100%; background: rgba(0,0,0,0.82); position: absolute; color: #fff; display: none}
.image:hover .caption {display: block;}
答案 3 :(得分:0)
试试这个:
$('ul li').mouseenter(function(){
var image= $(this).find('img'),
caption = $(this).find('div');
caption.width(image.width());
caption.height(image.height());
caption.fadeIn();
}).mouseleave(function(){
var image= $(this).find('img'),
caption = $(this).find('div');
caption.width(image.width());
caption.height(image.height());
caption.fadeOut();
});