;(function($){
;(function($){
* 以jQuery為基礎的簡易手風琴切換外掛程式
*/
$.fn.iAccordion=function(iSet){
$.fn.iAccordion=function(iSet){
$.fn.iAccordion=function(iSet){
$.fn.iAccordion=function(iSet){
=$.extend({Type: 'mouseover',Select:'img',Cur:0,InitInterval:100,Interval:500,Easing:''},iSet||{});
類型*
c mouseover,click,mouseleave等
* Select: 選擇器,以獲取需要切換的元素集合
🎜> * Interval: 滑鼠事件動畫間隔時間
* Easing: 動畫效果,需要jQuery.easing支持,參數可參考jQuery.easing@ http://gsgd.co.uk/sandbox/jquery/easing/ var item,boxW,selectW,animateW,sIndex,animateL;
$(this).css({' position':'relative','overflow':'hidden'});
item=$(this).find(iSet.Select); boxW=$(this).outerWidth();
boxW=$(this).outerWidth();
> animateW=(boxW-selectW)/(item.size()-1);
unction(i){
$ (this).animate({'left':animateW*i 'px'},iSet.InitInterval,iSet.Easing);
.on(iSet.Type,function(e){//綁定滑鼠事件
//取得目前元素指數值
> //滑鼠事件動畫,透過判斷元素索引值與目前元素指標值的大小關係動畫顯示目前元素並動畫排列
n > sIndex ? animateL=selectW animateW*(n -1) : animateL=animateW*n;
下(this). });
}).eq(iSet.Cur).trigger(iSet.Type);
});
如何呼叫?
1、在頁面中引入上面的插件程式碼;
2、$(selectmain).iAccordion({…});
3、相關參數及功能,請參考插件中的註解說明。
小小的提示,若需要定義Easing,需要導入jQuery.easing插件 ,Easing的參數即jQuery.easing的方法名稱,如easeOutBounce、easeOutQuint等。