我有以下jQuery 演示:http://jsfiddle.net/FTERP/
目前,当我将鼠标悬停在蓝框上时,img
内的steve
淡出。
当我将鼠标悬停在蓝框(' john ')上时,整个红色区域('容器')的不透明度会降至0.4 ,但蓝框仍然是100%蓝色?
这是我的 HTML:
<div id="container">
<div id="john" class="character normalClassName1">
<a href="#" id="link1"> </a>
</div>
<div id="steve" class="character">
<img src="http://placehold.it/400x400" />
</div>
</div>
使用Javascript:
$(function() {
$('#john').mouseenter(function() {
$(this).addClass('hoverClassName1');
$('.character[id!=john]').css({opacity:0.5});
var button = $(this).find('.button');
button.html('View more');
}).mouseleave(function () {
$('.hoverClassName1').removeClass('hoverClassName1');
$('.character').css({opacity:1});
$('.button').html('View');
});
});
CSS:
#container {width:100%;background:red;float:left;height:450px}
#john {position:relative;margin-top:-80px;margin-left:0px;background:blue;height:380px;float:left;width: 495px;}
#john div {margin-left:250px;width:180px;height:float:left;margin-top:205px}
#john div p {color:#074471;font-weight:bold;font-size:13px;margin-left:20px;}
#steve img {float:left}
#link1 {background:transparent;position:absolute;top:0px;left:0;width:100%;height:100%;z-index:1}
.normalClassName1 {width:495px!important;z-index:3;}
.hoverClassName1 {width:495px;z-index:4!important}
答案 0 :(得分:2)
不透明度将始终影响所有子元素。
如果您只是尝试淡出纯色背景色,则可以使用带有rgba()
或hsla()
等Alpha通道的颜色,但是:
#container.test {
background: rgba(255, 0, 0, 0.5); /* 0.5 = 50% transparency */
}
$(function() {
$('#john').mouseenter(function() {
$('#container').addClass("test");
}).mouseleave(function () {
$('#container').removeClass("test");
});
});
答案 1 :(得分:1)
在你的mouseenter call put
中$('#container').css({'opacity' : '.4'});
你需要将其他2个div移出容器div来执行此操作,因为它会影响所有孩子,你可以将它设置为绝对值,然后将其他2个div移到它上面。它很脏但会起作用。
答案 2 :(得分:0)
不,除非儿童置于其容器外,否则不可能。选项:
使用rgba()
和其他答案一样,但不能完全透明;
使用.png
img,并在悬停时将其替换为透明的。像:
$('selector').hover(
function () {
$(this).parent().css("background-image", "url('transparent.png')");
},
function () {
$(this).parent().css("background-image", "url('normal.png')");
}
);