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);
});
Watch the demo
source
share