/** * smallsilder jquery plugin * http://lib.kindcent.com/smallslider * jquery plugin for switch images, please open me with utf-8 encoding * created under ubuntu 9.10 os , if you open it with notepad.exe , some black squares will appear ! * 这是一个源码开放程序,本人特意加上注释以方便大家修改,你可以自行修改,再发布,欢迎和我交流。 * 0.5版本新增加actiongap延时选项,部分解决快速滑动时的闪烁问题。 * 即鼠标放上面后,需要等待一段时间才开始切换,默认为200毫秒。 * 不知何年何月才能算1.0版呢?因为我一直觉得切换的过渡效果还没有完全达到我的意志! * * licensed under the mit license * * @version 0.5 * @since 2009-7-3, 11:56:24 * @last 2010-12-6, 01:25:56 * @author jesse */ /** * usage: $('#slider').smallslider({ onimagestop:true, switchease: 'easeoutsine',switchpath: 'left'}); * * @param elm 你想要使用的最外层 * @param options 一些附加参数 * * valid options: * --------------------------------------- * time:3000, // 切换时间间隔,单位毫秒,1秒=1000毫秒 * autostart:true, // 是否自动开始播放 * onimagestop : false , // 鼠标放在图片上时,是否停止播放 * switchmode:'hover', // 图片切换的方式,click为单击切换,hover为鼠标移动到按钮上时切换 * switcheffect:'fadeout', // 切换特效,fadeout, ease, none, * switchpath: 'left' , // 切换的方向,可选值为:up , left ,即向上,向左 * switchease : 'easeoutquart' , // 可选值列表如下 * switchtime: 600, // 切换时间,单位毫秒,1秒=1000毫秒 * actiongap: 200, //[0.5版本新增]鼠标单击或移动触发切换,切换响应的时间间隔,0为立即响应,时间越大,响应越慢 * buttonposition: 'rightbottom', // 按钮位置表示,共有四个值:lefttop,leftbottom, righttop, rightbottom * buttonoffsetx:10, // 水平方向上的按钮偏移位置,指向中心部移动多少,这里是数值,不加px * buttonoffsety:4, // 竖直方向上的按钮偏移位置,指向中心部移动多少,这里是数值,不加px * buttonspace:4, // 按钮之间的间隔 单位为像素,但不要加px * showtext: true, // 是否显示标题,如果不显示,则只显示按钮 * showbuttons : true, // 是否显示按钮,默认显示 * textlink : true, // 是否给显示的标题加上链接,如果为false,则,只显示标题,标题不可单击,链接的地址自动和当前播放到的图片地址一致 * textswitch : 0 , // 标题是否运动显示,如果为0则不动,1 标题动,2 标题和背景一起动。 * textposition: '', // 标题栏的位置,默认为空,即和按钮的位置一致,取值 top , bottom * textalign: '' // 如果留空,则会默认和按钮位置的相反方向排列,取值:left, center, right */ (function($) { $.smallslider=function(elm, options){ // this 为当前的smallslider对象,为了区别,使用 _this 替换 var _this = this; _this.elm = elm ; // elm 为当前的 dom对象 ,即使用class="smallslider" 的那个div对象。 _this.$elm = $(elm); // $elm 为elm对象的jquery形式 _this.opts=$.extend({},$.smallslider.defaults, options); _this.slidertimer= null ; _this.actiongaptimer = null; _this.slideprocessing = false; // 初始化对象 _this.init = function() { _this.$ul = _this.$elm.find('>ul') ; // 为子元素ul _this.$lis = _this.$elm.find('li') ; // 为所有ul下子元素li 数组 _this.$ims = _this.$elm.find('img') ; // 为所有li下子元素img 数组 _this.itemnums = _this.$lis.length ; _this.width = _this.$elm.width(); _this.height = _this.$elm.height(); _this.current = 0 ; // 当前的index索引 if(_this.itemnums > 1) { if(_this.opts.switcheffect=='ease') { _this.$ul.css({ position:'absolute', left:0, top: 0 }); if(_this.opts.switchpath=='left') { var width = _this.itemnums * _this.width; _this.$lis.css({ 'float' : 'left' }); _this.$ul.css({ 'width' : width }); } else if(_this.opts.switchpath=='up') { var height = _this.itemnums * _this.height; _this.$ul.css({ 'height' : height }); } } else if(_this.opts.switcheffect=='fadeout') { _this.$ul.css({ position:'relative' }); _this.$lis.css({ position:'absolute', zindex:1 }).eq(0).css({ zindex:2 }); } if(_this.opts.showbuttons) { _this.createbuttons(); // 创建按钮。 } if(_this.opts.showtext) { _this.createtext(); // 创建文字显示。 } if(_this.opts.autostart) { _this.startslider(1); } if(_this.opts.onimagestop) { _this.onimage(); } } }; _this.createbuttons = function() { var buttons=''; for(var i=1; i <= _this.itemnums ; i++ ){ buttons += ''+i+''; } buttons ='
' + buttons + '
'; var left=0,right=0,top =0,bottom=0; var style_btns={}; switch(_this.opts.buttonposition){ case 'lefttop': left = _this.opts.buttonoffsetx; top = _this.opts.buttonoffsety; style_btns={left: left + 'px' , top: top+'px'}; break; case 'righttop': right = _this.opts.buttonoffsetx; top = _this.opts.buttonoffsety; style_btns={right: right + 'px' , top: top+'px'}; break; case 'rightbottom': right = _this.opts.buttonoffsetx; bottom = _this.opts.buttonoffsety; style_btns={right: right + 'px' ,bottom: bottom+'px'}; break; case 'leftbottom': left = _this.opts.buttonoffsetx; bottom = _this.opts.buttonoffsety; style_btns={left: left + 'px' ,bottom: bottom+'px'}; break; } $(buttons).css(style_btns).appendto(_this.$elm); _this.$btns = _this.$elm.find('span'); _this.$elm.find('span:not(:first)').css({marginleft: _this.opts.buttonspace+'px'}); _this.$btns.removeclass('current-btn'); _this.$btns.eq(0).addclass('current-btn'); if(_this.opts.switchmode=='click'){ _this.$btns.click(function(){ var ix = _this.$btns.index($(this)); //_this.slideto(ix); // 表示需要切换到哪一张 _this.actionslide(ix); }); }else if(_this.opts.switchmode=='hover'){ _this.$btns.hover(function(){ var ix = _this.$btns.index($(this)); //_this.slideto(ix); _this.actionslide(ix); }); } }; _this.actionslide = function(ix){ // console.log(_this.actiongaptimer); if(_this.actiongaptimer){ cleartimeout(_this.actiongaptimer); _this.actiongaptimer = null ; } _this.actiongaptimer = settimeout(function(){_this.slideto(ix) ;}, _this.opts.actiongap); }; // 创建标题标签 _this.createtext = function(){ var style_tex={}; switch(_this.opts.buttonposition){ case 'lefttop': style_tex={left:0, top:0,textalign:'right'}; _this.textposition = 'top'; break; case 'righttop': style_tex={left:0, top:0,textalign:'left'}; _this.textposition = 'top'; break; case 'rightbottom': style_tex={left:0,bottom:0,textalign:'left'}; _this.textposition = 'bottom'; break; case 'leftbottom': style_tex={left:0,bottom:0,textalign:'right'}; _this.textposition = 'bottom'; break; } if(_this.opts.textposition){ switch(_this.opts.textposition) { case 'top': style_tex.left = 0 ;style_tex.top = 0; break; case 'bottom': style_tex.left = 0 ;style_tex.bottom=0 ; break; } _this.textposition = _this.opts.textposition ; } if(_this.opts.textalign) { style_tex.textalign =_this.opts.textalign; } $('
').css(style_tex).css({ opacity:0.39 }).appendto(_this.$elm); var tex0= _this.$ims.eq(0).attr('alt'); if(_this.opts.textlink){ tex0 = ''+ tex0+''; } $('

').css(style_tex).html(tex0).appendto(_this.$elm); _this.$h3 = _this.$elm.find('h3'); _this.$lay = _this.$elm.find('div.smallslider-lay'); _this.$tex = _this.$elm.find('.smallslider-tex'); }; _this.onimage =function(){ _this.$ims.hover(function(){ _this.stopslider(); }, function(){ _this.slideto(_this.current+1); }); }; _this.slideto = function (index){ _this.stopslider(); // 先清掉以前的settimeout; if(index > _this.itemnums -1) index = 0; if(index < 0 ) index = _this.itemnums -1 ; // 切换表示当前元素 _this.$lis.removeclass('current-li').eq(index).addclass('current-li'); if(_this.opts.showbuttons) { _this.$btns.removeclass('current-btn'); _this.$btns.eq(index).addclass('current-btn'); } _this.slidetext(index); var chattr = ''; var ic = 0; switch(_this.opts.switchpath) { case 'left': chattr = 'left'; ic =_this.width ; break; case 'up': default : chattr = 'top'; ic = _this.height ; break; } var icx = -1 * index * ic; // top或left 变化量 var switchease = _this.opts.switchease ; switch( _this.opts.switcheffect){ case 'fadeout': if(_this.current != index) { _this.slideprocessing = true ; _this.$lis.stop(true,false); _this.$lis.css({zindex:1,opacity:1}).hide(); _this.$lis.eq(_this.current).css({zindex:3}).show(); _this.$lis.eq(index).css({zindex:2}).show(); _this.$lis.eq(_this.current).fadeout(_this.opts.switchtime,function(){ _this.$lis.css({zindex:1}); _this.$lis.eq(index).css({zindex:3,opacity:1}).show(); _this.slideprocessing = false; }); } break; case 'ease': _this.$ul.stop(true,false); if(chattr=='top') _this.$ul.animate({top : icx}, {duration: _this.opts.switchtime, easing: switchease, complete: function(){ } }); else if(chattr=='left') _this.$ul.animate({left : icx}, {duration: _this.opts.switchtime, easing: switchease ,complete:function(){ }}); break; case 'none': default : _this.$lis.eq(_this.current).hide(); _this.$lis.eq(index).show(); break; } _this.current = index ; _this.startslider(index+1); }; // 切换文字 _this.slidetext = function(index) { if(_this.opts.showtext) { var tex = _this.$ims.eq(index).attr('alt'); if(_this.opts.textlink){ tex = ''+ tex+''; } _this.$h3.html(tex); if(_this.opts.textswitch>0){ var t_path = _this.$h3.height(); var t_ani1 ={}, t_ani2 ={}; if(_this.textposition=='top'){ t_ani1 = {top : -1*t_path}; t_ani2 = {top : 0}; } else if(_this.textposition=='bottom'){ t_ani1 = {bottom : -1*t_path}; t_ani2 = {bottom : 0}; } if(_this.opts.textswitch==1) { _this.$h3.stop(true, false).animate(t_ani1, {duration: 200, easing: 'easeoutquad'}).animate(t_ani2, {duration: 200, easing: 'easeoutquad'}); }else if(_this.opts.textswitch==2){ _this.$tex.stop(true, false).animate(t_ani1, {duration: 200, easing: 'easeoutquad'}).animate(t_ani2, {duration: 200, easing: 'easeoutquad'}); //_this.$lay.animate(t_ani1, {duration: 200, easing: 'easeoutquad'}).animate(t_ani2, {duration: 200, easing: 'easeoutquad'}); } } } }; // 开始切换 _this.startslider = function(index){ // 由第几个序号开始 初始为1 var st =settimeout(function(){ _this.slideto(index); },_this.opts.time); _this.slidertimer = st ; }; // 停止切换 _this.stopslider = function(){ //if(_this.opts.switcheffect=='fadeout') _this.$lis.stop(); // else if(_this.opts.switcheffect=='ease') _this.$ul.stop(); if(_this.slidertimer) { cleartimeout(_this.slidertimer); } _this.slidertimer = null; }; _this.init(); }; $.smallslider.defaults={ time:3000, autostart:true, onimagestop : false , switchmode:'hover', switcheffect:'fadeout', switchpath: 'left' , switchease : 'easeoutquart' , switchtime: 10, actiongap: 200, buttonposition: 'rightbottom', buttonoffsetx:10, buttonoffsety:4, buttonspace:4, showtext: false, showbuttons : true, textlink : true, textswitch : 0 , textposition: '', textalign: '' }; $.fn.smallslider = function(options){ // 遍历由$.smallslider类创建生成的smallslider对象。 return this.each(function(i){ (new $.smallslider(this, options)); }); }; })(jquery); $.smallslider.switcheases = ["easeinquad", "easeoutquad", "easeinoutquad", "easeincubic", "easeoutcubic", "easeinoutcubic", "easeinquart", "easeoutquart", "easeinoutquart", "easeinquint", "easeoutquint", "easeinoutquint", "easeinsine", "easeoutsine", "easeinoutsine", "easeinexpo", "easeoutexpo", "easeinoutexpo", "easeincirc", "easeoutcirc", "easeinoutcirc", "easeinelastic", "easeoutelastic", "easeinoutelastic", "easeinback", "easeoutback", "easeinoutback", "easeinbounce", "easeoutbounce", "easeinoutbounce"]; // t: current time, b: beginning value, c: change in value, d: duration jquery.easing['jswing'] = jquery.easing['swing']; jquery.extend( jquery.easing, { def: 'easeoutquad', swing: function (x, t, b, c, d) { //alert(jquery.easing.default); return jquery.easing[jquery.easing.def](x, t, b, c, d); }, easeinquad: function (x, t, b, c, d) { return c*(t/=d)*t + b; }, easeoutquad: function (x, t, b, c, d) { return -c *(t/=d)*(t-2) + b; }, easeinoutquad: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t + b; return -c/2 * ((--t)*(t-2) - 1) + b; }, easeincubic: function (x, t, b, c, d) { return c*(t/=d)*t*t + b; }, easeoutcubic: function (x, t, b, c, d) { return c*((t=t/d-1)*t*t + 1) + b; }, easeinoutcubic: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t + b; return c/2*((t-=2)*t*t + 2) + b; }, easeinquart: function (x, t, b, c, d) { return c*(t/=d)*t*t*t + b; }, easeoutquart: function (x, t, b, c, d) { return -c * ((t=t/d-1)*t*t*t - 1) + b; }, easeinoutquart: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t*t + b; return -c/2 * ((t-=2)*t*t*t - 2) + b; }, easeinquint: function (x, t, b, c, d) { return c*(t/=d)*t*t*t*t + b; }, easeoutquint: function (x, t, b, c, d) { return c*((t=t/d-1)*t*t*t*t + 1) + b; }, easeinoutquint: function (x, t, b, c, d) { if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b; return c/2*((t-=2)*t*t*t*t + 2) + b; }, easeinsine: function (x, t, b, c, d) { return -c * math.cos(t/d * (math.pi/2)) + c + b; }, easeoutsine: function (x, t, b, c, d) { return c * math.sin(t/d * (math.pi/2)) + b; }, easeinoutsine: function (x, t, b, c, d) { return -c/2 * (math.cos(math.pi*t/d) - 1) + b; }, easeinexpo: function (x, t, b, c, d) { return (t==0) ? b : c * math.pow(2, 10 * (t/d - 1)) + b; }, easeoutexpo: function (x, t, b, c, d) { return (t==d) ? b+c : c * (-math.pow(2, -10 * t/d) + 1) + b; }, easeinoutexpo: function (x, t, b, c, d) { if (t==0) return b; if (t==d) return b+c; if ((t/=d/2) < 1) return c/2 * math.pow(2, 10 * (t - 1)) + b; return c/2 * (-math.pow(2, -10 * --t) + 2) + b; }, easeincirc: function (x, t, b, c, d) { return -c * (math.sqrt(1 - (t/=d)*t) - 1) + b; }, easeoutcirc: function (x, t, b, c, d) { return c * math.sqrt(1 - (t=t/d-1)*t) + b; }, easeinoutcirc: function (x, t, b, c, d) { if ((t/=d/2) < 1) return -c/2 * (math.sqrt(1 - t*t) - 1) + b; return c/2 * (math.sqrt(1 - (t-=2)*t) + 1) + b; }, easeinelastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b;if ((t/=d)==1) return b+c;if (!p) p=d*.3; if (a < math.abs(c)) {a=c;s=p/4;} else s = p/(2*math.pi) * math.asin (c/a); return -(a*math.pow(2,10*(t-=1)) * math.sin( (t*d-s)*(2*math.pi)/p )) + b; }, easeoutelastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b;if ((t/=d)==1) return b+c;if (!p) p=d*.3; if (a < math.abs(c)) {a=c;s=p/4;} else s = p/(2*math.pi) * math.asin (c/a); return a*math.pow(2,-10*t) * math.sin( (t*d-s)*(2*math.pi)/p ) + c + b; }, easeinoutelastic: function (x, t, b, c, d) { var s=1.70158;var p=0;var a=c; if (t==0) return b;if ((t/=d/2)==2) return b+c;if (!p) p=d*(.3*1.5); if (a < math.abs(c)) {a=c;s=p/4;} else s = p/(2*math.pi) * math.asin (c/a); if (t < 1) return -.5*(a*math.pow(2,10*(t-=1)) * math.sin( (t*d-s)*(2*math.pi)/p )) + b; return a*math.pow(2,-10*(t-=1)) * math.sin( (t*d-s)*(2*math.pi)/p )*.5 + c + b; }, easeinback: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; return c*(t/=d)*t*((s+1)*t - s) + b; }, easeoutback: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b; }, easeinoutback: function (x, t, b, c, d, s) { if (s == undefined) s = 1.70158; if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b; return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b; }, easeinbounce: function (x, t, b, c, d) { return c - jquery.easing.easeoutbounce (x, d-t, 0, c, d) + b; }, easeoutbounce: function (x, t, b, c, d) { if ((t/=d) < (1/2.75)) { return c*(7.5625*t*t) + b; } else if (t < (2/2.75)) { return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b; } else if (t < (2.5/2.75)) { return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b; } else { return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b; } }, easeinoutbounce: function (x, t, b, c, d) { if (t < d/2) return jquery.easing.easeinbounce (x, t*2, 0, c, d) * .5 + b; return jquery.easing.easeoutbounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b; } });