Сообщение от skuty
|
$(this).parents('.grey').r emoveClass('animated_mid fadeInDown');
$(this).parents('.grey').a ddClass('animated_mid fadeInDown').css({'display' : 'block'});
|
Зачем ты удаляешь класс и тут же его добавляешь? В чем смысл?
Сообщение от skuty
|
.css({'display' : 'block'})
|
Это сокращается до .show()
Сообщение от skuty
|
$('.item').mouseov er(function(){
$(this).find('.ful linfo').css({'display' : 'block'});
});
$('.item').mousele ave(function(){
$(this).find('.ful linfo').css({'display' : 'none'});
});
|
Почему бы не делать это через css (псевдокласс :hover)?