链接微调

Avatar of Chris Coyier
Chris Coyier
$("a").hover(function() {
       $(this).stop().animate({paddingLeft : "10px"},200);
},function() {
       $(this).stop().animate({paddingLeft : "0px"},200);
});

确保将选择器更改为仅针对您要进行微调的链接,例如“#sidebar ul li a”。