(function($){ $.fn.extend({ "slidelf":function(value){ value = $.extend({ "prev":"", "next":"", "speed":"" },value) var dom_this = $(this).get(0); //灏唈query瀵硅薄杞崲鎴怐om瀵硅薄;浠ヤ究鍏跺畠鍑芥暟涓皟鐢紱 var marginl = parseint($("ul li:first",this).css("margin-left")); //姣忎釜鍥剧墖margin鐨勬暟鍊� var movew = $("ul li:first",this).outerwidth()+marginl; //闇€瑕佹粦鍔ㄧ殑鏁板€� //宸﹁竟鐨勫姩鐢� function leftani(){ $("ul li:first",dom_this).animate({"margin-left":-movew},value.speed,function(){ $(this).css("margin-left",marginl).appendto($("ul",dom_this)); }); } //鍙宠竟鐨勫姩鐢� function rightani(){ $("ul li:last",dom_this).prependto($("ul",dom_this)); $("ul li:first",dom_this).css("margin-left",-movew).animate({"margin-left":marginl},value.speed); } //鐐瑰嚮宸﹁竟 $("."+value.prev).click(function(){ if(!$("ul li:first",dom_this).is(":animated")){ leftani(); } }); //鐐瑰嚮宸﹁竟 $("."+value.next).click(function(){ if(!$("ul li:first",dom_this).is(":animated")){ rightani(); } }) } }); })(jquery)