jQuery链接微移插件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery链接微移插件相关的知识,希望对你有一定的参考价值。
Plugin Source.
(function($){ //Define the plugin, named 'linkNudge' $.fn.linkNudge = function(params){ //set default parameters params = $.extend({ padding: 20, elapseTime: 300, returnPadding: 0}, params); //Traverse every node passed this.each(function(){ //Define this as a single object var $t = $(this); //Proceed to nudge on hover $t.hover(function(){ $t.stop().css('cursor', 'pointer').animate({paddingLeft: params.padding}, params.elapseTime); }, function(){ $t.stop().animate({paddingLeft: params.returnPadding}, params.elapseTime); }); }); return this;//Allow for chaining. }; })(jQuery);
以上是关于jQuery链接微移插件的主要内容,如果未能解决你的问题,请参考以下文章