jq animate动画,导航文字动画

//导航下拉文字移动效果
 $('.nav ul ul a').hover(function() {
        $(this).stop().animate({ paddingLeft: '20px' }, 'fast');
    }, function() {
        $(this).stop().animate({ paddingLeft: '10px' }, 'fast');
 }); 

你可能感兴趣的:(js)