Lines Matching refs:o
1178 $.fn.dacSlideshow = function(o) { argument
1181 o = $.extend({
1193 }, o || {});
1199 var animCss = o.vertical ? "top" : "left";
1200 var sizeCss = o.vertical ? "height" : "width";
1209 var curr = o.start;
1211 li.css({float: o.vertical ? "none" : "left"});
1215 var liSize = o.vertical ? height(li) : width(li);
1225 if (o.pagination) {
1232 if (i==o.start) li.addClass('active');
1243 if(o.btnPrev)
1244 $(o.btnPrev).click(function(e) {
1246 return go(curr-o.scroll);
1250 if(o.btnNext)
1251 $(o.btnNext).click(function(e) {
1253 return go(curr+o.scroll);
1257 if(o.btnPause)
1258 $(o.btnPause).click(function(e) {
1268 if(o.auto) startRotateTimer();
1276 go(curr+o.scroll);
1278 }, o.autoTime);
1279 $(o.btnPause).removeClass('paused');
1284 $(o.btnPause).addClass('paused');
1301 … animCss == "left" ? { left: -(curr*liSize) } : { top: -(curr*liSize) } , o.speed, o.easing,
1307 $(o.btnPrev + "," + o.btnNext).removeClass("disabled");
1308 $( (curr-o.scroll<0 && o.btnPrev)
1310 (curr+o.scroll > itemLength && o.btnNext)
1322 if(o.auto) startRotateTimer();
1379 $.fn.dacTabbedList = function(o) { argument
1382 o = $.extend({
1387 }, o || {});
1398 var nav = $(o.nav_id, div);
1401 var frame = div.find(o.frame_id);
1414 frame.animate({ 'margin-left' : -(curr*content_width) }, o.speed, o.easing,