滑动背景链接

Avatar of Chris Coyier
Chris Coyier
$('a', '#nav').hover(function() {
         if(!$(this).parent().hasClass('current')) {
                 $(this).stop().animate({
                         backgroundPosition: '(0 -75px)'
                 });
         }
 }, function() {
         if(!$(this).parent().hasClass('current')) {
                 $(this).stop().animate({
                         backgroundPosition: '(0 -0)'
                 });
         }
 });

在鼠标悬停时向上和向下滑动链接的背景图像。需要 背景位置插件