我有一堆图像,当我将鼠标悬停在其中一个图像上时,我希望另外一个div显示其他每个图像以“变暗”它们。它似乎是第一张图片,但之后却有自己的想法。
以下是我的尝试:
HTML:
<div id="hp_imgs">
<div class="imggHolder">
<img src="http://9ammusic.com/images/hp/adele.jpg">
<div class="darkOver"></div>
<div class="showOver">Adele</div>
</div>
<div class="imggHolder">
<img src="http://9ammusic.com/images/hp/michael-buble.jpg">
<div class="darkOver"></div>
<div class="showOver">Michael Buble</div>
</div>
<div class="imggHolder">
<img src="http://9ammusic.com/images/hp/neil-diamond.jpg">
<div class="darkOver"></div>
<div class="showOver">Neil Diamond</div>
</div>
</div>
CSS:
#hp_imgs {
width:66%;
float:right;
display:block;
}
.imggHolder {
width:31%;
float:left;
margin:1%;
position:relative;
cursor:pointer;
}
.showOver {
width:80%;
position:absolute;
bottom:20%;
left:10%;
height:30px;
background:rgba(255, 255, 255, .8);
padding-top:10px;
text-align:center;
display:none;
border-radius:6px;
}
.darkOver {
width:100%;
height:100%;
background:rgba(0, 0, 0, .8);
position:absolute;
top:0;
left:0;
display:none;
z-index:10;
}
#hp_imgs img {
float:right;
margin:2px;
border-radius:4px;
display: block;
max-width:100%;
width:auto;
height:auto;
}
JQuery的:
$('.imggHolder').mouseenter(function() {
$(this).find('.showOver').fadeIn();
$('.darkOver').fadeIn(); // show all darkOver
$(this).find('.darkOver').hide(); // hide 'this' darkOver
});
$('.imggHolder').mouseleave(function() {
$(this).find('.showOver').fadeOut();
$('.darkOver').fadeOut();
});
有更好的方法吗?
更新我认为发生的事情是fadeIn / FadeOut没有完成
这是Fiddle
答案 0 :(得分:3)
如果您只定位要更改的元素(即兄弟姐妹),这会有所帮助。另外,使用.stop()
来阻止动画排队。
$('.imggHolder').mouseenter(function () {
$(this).find('.showOver').fadeIn();
$(this).siblings().find('.darkOver').stop().fadeIn();
});
$('.imggHolder').mouseleave(function () {
$(this).find('.showOver').fadeOut();
$(this).siblings().find('.darkOver').fadeOut();
});
这个答案都存在问题和@焙烤都有问题 - 如果你过快地移动光标,我的解决方案会出现问题,而@ roasted将使所有叠加层在图像之间闪烁关闭。您可以通过转换到CSS转换来避免这两个问题,这可以通过使用一些简单的JS操作的类更改来触发。请查看以下内容;
.showOver,
.darkOver {
opacity: 0; /* instead of display: none; */
transition: opacity .5s ease;
}
.visible {
opacity: 1;
}
$('.imggHolder').hover(function () {
$(this).find('.showOver').addClass("visible");
$(this).siblings().find('.darkOver').addClass("visible");
}, function () {
$('.showOver, .darkOver').removeClass("visible");
});
优点:流畅的硬件加速动画,会自动处理过渡的开始/停止位置
缺点:IE9 http://caniuse.com/css-transitions中没有支持(将回退到简单显示/隐藏叠加层而不动画过渡)
答案 1 :(得分:2)
停止当前动画,您可以使用悬停别名:
$('.imggHolder').hover(function () {
$(this).find('.showOver').stop(true,true).fadeIn();
$('.darkOver').stop(true,true).fadeIn();
$(this).find('.darkOver').hide();
}, function () {
$(this).find('.showOver').stop(true,true).fadeOut();
$('.darkOver').stop(true,true).fadeOut();
});