当鼠标指针穿过元素时,会发生 mouseenter 事件。
该事件大多数时候会与 mouseleave 事件一起使用。
$(".photo-wall .move-box .item ").mouseenter(function(){
$(this).fadeTo('normal',1);
})
$(".photo-wall .move-box .item ").mouseleave(function(){
$(this).fadeTo('normal',0.6);
})