/* auther: 772616760@qq.com */ jQuery.extend({ scrollTab:function(id,tabId,tabTn,time) { var oId = $("#"+id), tabId = $("#"+tabId), tabTn = $("#"+tabTn), t = time, len = tabId.find('.fcon').length, i = 0, loop = setInterval(loop_player,t), str = ""; tabId.find('.fcon').eq(0).css('display','block'); tabId.find('.fcon').each(function(i) { i=i+1; str += ''+i+''; tabTn.html(str) }); tabTn.find('a').eq(0).addClass('current');; oId.hover(function() { clearInterval(loop); }, function() { loop = setInterval(loop_player,t); }); tabTn.find('a').click(function() { i = tabTn.find('a').index(this); player(i) }); function loop_player(){ i++; if( i == len ){ i = 0; } player(i) } function player(i){ //tabId.find('.fcon').eq(i).animate({"z-index":i+1,"opacity": 1}, 1000).siblings().animate({"z-index":0,"opacity": 0}, 1000); tabId.find('.fcon').eq(i).show().siblings().hide(); tabTn.find('a').eq(i).addClass('current').siblings().removeClass('current') } }, scrollPhoto:function(id,prev,next,time,content){ var oId = $("#"+id); var oNext = $("#"+next); var oPrev = $("#"+prev); var oCont = $("."+content); var lineWidth = oId.find("li").outerWidth(true); speed = time *1000; oId.width(lineWidth*oId.find('li').length); //向左滚动 function Marquee(){ oId.animate({marginLeft: -lineWidth}, 1000,function(){ $(this).css({marginLeft:"0px"}).find('li:first').appendTo(this); }) } var MyMar = null; var MyMar = setInterval(Marquee,speed); oCont.hover(function() { if(MyMar != null){ clearInterval(MyMar) } }, function() { clearInterval(MyMar); MyMar = setInterval(Marquee,speed) }); //点击向左 oPrev.click(function() { oId.stop(); oId.find("li:last").prependTo(oId); oId.css({marginLeft:-lineWidth}); oId.animate({marginLeft:0}, 1000); }); //点击向右 oNext.click(function() { oId.stop(); oId.animate({marginLeft: -lineWidth },1000,function(){ $(this).css({marginLeft:"0px"}).find("li:first").appendTo(this); }) }); } });