Цитата:
|
$new_width = $new_width + $(this).outerWidth(true);
}).hover(
function(){
$(this).find('img:first').stop().animate({ opacity : 1 }); //0.2
$(this).stop().animate({ opacity : 1, top : -10 });
$(this).find('.item-caption').stop().animate({ opacity : 1 });
},
function(){
$(this).find('img:first').stop().animate({ opacity : 0 });
if( !$(this).hasClass( 'ui-tabs-hide' ) ){
$(this).stop().animate({ opacity : 1, top: 0 });
}
$(this).find('.item-caption').stop().animate({ opacity : 0 });
}
);
$scroller.width( $new_width );
|
Замените в скрипте кусок,
выделен синим