我有一排菜单按钮,我需要背景图像是透明的,然后在翻转时淡入(悬停)。 我可以使用jQuery来实现这个目标吗?
答案 0 :(得分: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();
});
答案 1 :(得分: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);
});
请参阅 demo
答案 2 :(得分:0)
就像这样(我的头脑),然后你必须将fadin()fadeout()添加到混音中。
答案 3 :(得分:0)
$('.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()
可以清除动画队列,因此可以处理非常好的快速鼠标悬停。