You could do something this way http://jsfiddle.net/steweb/fn68L/
js:
$(document).ready(function(){
$(".wrapper div.me:last").addClass("reduce");
$(".wrapper div.me").hover(
function(){
$(this).fadeTo('fast',1); //or $(this).animate({opacity:1},300/*ms*/)
$(".wrapper div").not(this).fadeTo('fast',0.8);
});
});
Or you can check Animate to Class jquery plugin ;)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…