1

我有这个 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>

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

提前致谢!

4

4 回答 4

3

尝试这样的事情 -演示

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);
    },
})
于 2012-12-12T18:09:21.517 回答
1

试试这个

$(document).ready(function(){
  $('a','.caption').mouseenter(function(){
     $('span',$(this).parent()).show();
  }).mouseleave(function(){
     $('span',$(this).parent()).hide();
  });

});​</p>

参考 http://jsfiddle.net/puu5u/9/

于 2012-12-12T18:14:20.637 回答
0

您可以在 CSS 中执行此操作

HTML

​&lt;div class="image">
<p class="caption">Some info related the pic</p>
<img src="http://i.imgur.com/VMaxsb.jpg" />
</div>​

CSS

.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;}​

演示 - http://jsfiddle.net/hqLjz/

于 2012-12-12T18:08:52.540 回答
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();
});​

小提琴

于 2012-12-12T18:18:15.543 回答