简单鼠标跟随效果
(function ($) { $.extend({ 'nicenav': function (con) { con = typeof con === 'number' ? con : 400; var $lis = $('.tabs_list .tabs_item'), $h = $('.tabsHover') $lis.hover(function () { $h.stop().animate({ 'left': $(this).offsetParent().context.offsetLeft }, con); }, function () { $h.stop().animate({ 'left': $(this).offsetParent().context.offsetLeft }, con); }) } }); }(jQuery));