hover, mousein mouseout . , , , , , .
EDIT:
,
$('.zitem').hover(function() {
width = $('.zitem').width() * zoom;
height = $('.zitem').height() * zoom;
$(this).find('a img').stop(false,true).animate({'width':width, 'height':height, 'top':move, 'left':move}, {duration:200});
$(this).find('div.caption').stop(false,true).fadeIn(200);
},
function() {
$(this).find('a img').stop(false,true).animate({'width':$('.zitem').width(), 'height':$('.zitem').height(), 'top':'0', 'left':'0'}, {duration:100});
$(this).find('div.caption').stop(false,true).fadeOut(200);
});
, ,
$('.zitem').hover(function() {
width = $('.zitem').width() * zoom;
height = $('.zitem').height() * zoom;
$(this).find('a img').stop(false,true).animate({'width':width, 'height':height, 'top':move, 'left':move}, {duration:200});
$(this).siblings('h2').animate({'color':'#111111'},250,'linear');
$(this).find('div.caption').stop(false,true).fadeIn(200);
},
function() {
$(this).find('a img').stop(false,true).animate({'width':$('.zitem').width(), 'height':$('.zitem').height(), 'top':'0', 'left':'0'}, {duration:100});
$(this).siblings('h2').animate({'color':'#EE4E07'},250,'linear');
$(this).find('div.caption').stop(false,true).fadeOut(200);
});