我有一排菜单按钮,我需要背景图像是透明的,然后在翻转(悬停)时淡入。我可以使用 jQuery 来实现这一点吗?
问问题
7489 次
4 回答
4
由于只有在块中的文本可见时才能淡化背景,因此您可以对标记进行一些小的更改:
HTML:
<div class="menuitem"><span></span>ITEM 01</div>
CSS:
.menuitem {
position: relative;
/* ... */
}
.menuitem span {
position: absolute;
display: none;
top: 0;
left: 0;
width: inherit;
height: inherit;
background-image: url(http://thumbs.gograph.com/gg58916312.jpg);
z-index: -1;
}
JavaScript:
$(".menuitem").hover(function() {
$(this).children("span").fadeIn();
}, function() {
$(this).children("span").fadeOut();
});
演示:http: //jsfiddle.net/JdHWY/11/
于 2012-05-06T15:39:55.840 回答
2
HTML:
<div class="header">
<div class="menuitem">ITEM 01</div>
<div class="menuitem">ITEM 02</div>
<div class="menuitem">ITEM 03</div>
<div class="menuitem">ITEM 04</div>
</div>
CSS:
.menuitem {
background-image: url(http://thumbs.gograph.com/gg58916312.jpg);
width: 180px;
margin-left: 1px;
margin-right: 1px;
margin-top: 102px;
height: 75px;
float: left;
cursor: pointer;
font-size: 36px;
text-align: center;
line-height: 85px;
opacity: 0.5
}
jQuery:
$('.menuitem').hover(function() {
$(this).stop().animate({
opacity: 1
}, 300);
}, function() {
$(this).stop().animate({
opacity: 0.5
}, 300);
});
查看演示
于 2012-05-06T15:36:47.660 回答
0
就像这样(我的头顶),然后你必须将 fadin() fadeout() 添加到例如混音中。
于 2012-05-06T15:35:41.740 回答
0
演示 jsFiddle
$('.menuitem').fadeTo(0,0.7).on('mouseenter mouseleave',function( ev ){
ev=ev.type==='mouseenter' ? // event is mouseenter?
$(this).stop().fadeTo(200,1) : // (if yes)
$(this).stop().fadeTo(200,0.7) ; // (if no) event is mouseleave
});
这将很好地处理快速鼠标悬停,因为.stop()
这将清除动画队列。
于 2012-05-06T15:43:04.430 回答