;(function($){ $.fn.dbTabSlideStepMove=function(options){ var opt={ imgWidth:1000, //°¡·Î imgHeight:260, //¼¼·Î motionType:'none', //¸ð¼ÇŸÀÔ('none','x','y','fade') motionSpeed:300, //¸ð¼Ç¼Óµµ autoRollingTime:3000 //ÀÚµ¿·Ñ¸µ¼Óµµ(¹Ð¸®ÃÊ) } $.extend(opt,options); return this.each(function(){ var $this=$(this); var $imgSet=$this.find('.imgSet'); var $imgList=$this.find('.imgSet li'); var $menuSet=$this.find('.menuSet'); var $menuList=$this.find('.menuSet li'); var $dirList=$this.find('.dir'); var dirIs=$dirList.length; if(dirIs){ var $nextBtn=$this.find('.next'); var $prevBtn=$this.find('.prev'); } var listNum=$imgList.length; var currentImg=0; var oldCurrentImg=-1 var timerId=0; var dir='next'; init(); function init(){ setCss(); setMouseEvent(); setEnterFrame(); setAnimation(); } function setCss(){ $imgSet.css({'width':opt.imgWidth,'height':opt.imgHeight,'position':'relative'}); $imgList.css({'position':'absolute','left':0,'top':0,'display':'block'}); for(var i=0;i