(function($,undefined){ //////////////////////////////////////// // THE REVOLUTION PLUGIN STARTS HERE // /////////////////////////////////////// $.fn.extend({ // OUR PLUGIN HERE :) revolution: function(options) { //////////////////////////////// // SET DEFAULT VALUES OF ITEM // //////////////////////////////// $.fn.revolution.defaults = { delay:9000, startheight:500, startwidth:960, hideThumbs:200, thumbWidth:100, // Thumb With and Height and Amount (only if navigation Tyope set to thumb !) thumbHeight:50, thumbAmount:5, navigationType:"bullet", //bullet, thumb, none, both (No Thumbs In FullWidth Version !) navigationArrows:"nexttobullets", //nexttobullets, verticalcentered, none navigationStyle:"round", //round,square,navbar touchenabled:"on", // Enable Swipe Function : on/off onHoverStop:"on", // Stop Banner Timet at Hover on Slide on/off navOffsetHorizontal:0, navOffsetVertical:20, stopAtSlide:-1, // Stop Timer if Slide "x" has been Reached. If stopAfterLoops set to 0, then it stops already in the first Loop at slide X which defined. -1 means do not stop at any slide. stopAfterLoops has no sinn in this case. stopAfterLoops:-1, // Stop Timer if All slides has been played "x" times. IT will stop at THe slide which is defined via stopAtSlide:x, if set to -1 slide never stop automatic hideCaptionAtLimit:0, // It Defines if a caption should be shown under a Screen Resolution ( Basod on The Width of Browser) hideAllCaptionAtLilmit:0, // Hide all The Captions if Width of Browser is less then this value hideSliderAtLimit:0, // Hide the whole slider, and stop also functions if Width of Browser is less than this value shadow:1, //0 = no Shadow, 1,2,3 = 3 Different Art of Shadows (No Shadow in Fullwidth Version !) fullWidth:"off" // Turns On or Off the Fullwidth Image Centering in FullWidth Modus }; options = $.extend({}, $.fn.revolution.defaults, options); return this.each(function() { var opt=options; var container=$(this); // CHECK IF FIREFOX 13 IS ON WAY.. IT HAS A STRANGE BUG, CSS ANIMATE SHOULD NOT BE USED opt.firefox13 = /firefox/.test(navigator.userAgent.toLowerCase()); opt.ie = !$.support.leadingWhitespace; opt.ie9 = $.support.leadingWhitespace; // CHECK THE jQUERY VERSION var version = $.fn.jquery.split('.'), versionTop = parseFloat(version[0]), versionMinor = parseFloat(version[1]), versionIncrement = parseFloat(version[2] || '0'); if (versionTop==1 && versionMinor < 7) { container.html('
The Current Version of jQuery:'+version+'
Please update your jQuery Version to min. 1.7 in Case you wish to use the Revolution Slider Plugin
'); } // Delegate .transition() calls to .animate() // if the browser can't do CSS transitions. if (!$.support.transition) $.fn.transition = $.fn.animate; $.cssEase['bounce'] = 'cubic-bezier(0,1,0.5,1.3)'; // CATCH THE CONTAINER //var container=$(this); //container.css({'display':'block'}); // LOAD THE YOUTUBE API IF NECESSARY container.find('.caption').each(function() { $(this).addClass('tp-caption')}); container.find('.tp-caption iframe').each(function() { try { if ($(this).attr('src').indexOf('you')>0) { var s = document.createElement("script"); s.src = "http://www.youtube.com/player_api"; /* Load Player API*/ var before = document.getElementsByTagName("script")[0]; before.parentNode.insertBefore(s, before); } } catch(e) {} }); // LOAD THE VIMEO API container.find('.tp-caption iframe').each(function() { try{ if ($(this).attr('src').indexOf('vim')>0) { var f = document.createElement("script"); f.src = "http://a.vimeocdn.com/js/froogaloop2.min.js"; /* Load Player API*/ var before = document.getElementsByTagName("script")[0]; before.parentNode.insertBefore(f, before); } } catch(e) {} }); // SHUFFLE MODE if (opt.shuffle=="on") { for (var u=0;uul:first-child >li').length;u++) { var it = Math.round(Math.random()*container.find('>ul:first-child >li').length); container.find('>ul:first-child >li:eq('+it+')').prependTo(container.find('>ul:first-child')); } } // CREATE SOME DEFAULT OPTIONS FOR LATER opt.slots=4; opt.act=-1; opt.next=0; opt.origcd=opt.delay; opt.firststart=1; // BASIC OFFSET POSITIONS OF THE BULLETS if (opt.navOffsetHorizontal==undefined) opt.navOffsetHorizontal=0; if (opt.navOffsetVertical==undefined) opt.navOffsetVertical=0; // SHORTWAY USAGE OF OFFSETS opt.navOH = opt.navOffsetHorizontal; opt.navOV = opt.navOffsetVertical; container.append('
'); // RESET THE TIMER if (container.find('.tp-bannertimer').length==0) container.append(''); var bt=container.find('.tp-bannertimer'); if (bt.length>0) { bt.css({'width':'0%'}); }; // WE NEED TO ADD A BASIC CLASS FOR SETTINGS.CSS container.addClass("tp-simpleresponsive"); opt.container=container; //if (container.height()==0) container.height(opt.startheight); // AMOUNT OF THE SLIDES opt.slideamount = container.find('>ul:first >li').length; //alert(opt.slideamount); // A BASIC GRID MUST BE DEFINED. IF NO DEFAULT GRID EXIST THAN WE NEED A DEFAULT VALUE, ACTUAL SIZE OF CONAINER if (container.height()==0) container.height(opt.startheight); if (opt.startwidth==undefined || opt.startwidth==0) opt.startwidth=container.width(); if (opt.startheight==undefined || opt.startheight==0) opt.startheight=container.height(); // OPT WIDTH && HEIGHT SHOULD BE SET opt.width=container.width(); opt.height=container.height(); // DEFAULT DEPENDECIES opt.bw = opt.startwidth / container.width(); opt.bh = opt.startheight / container.height(); // IF THE ITEM ALREADY IN A RESIZED FORM if (opt.width!=opt.startwidth) { opt.height = Math.round(opt.startheight * (opt.width/opt.startwidth)); container.height(opt.height); } // LETS SEE IF THERE IS ANY SHADOW if (opt.shadow!=0) { container.parent().append('
'); container.parent().find('.tp-bannershadow').css({'width':opt.width}); } // IF IMAGES HAS BEEN LOADED container.waitForImages(function() { // PREPARE THE SLIDES prepareSlides(container,opt); // CREATE BULLETS if (opt.slideamount >1) createBullets(container,opt); if (opt.slideamount >1) createThumbs(container,opt); if (opt.slideamount >1) createArrows(container,opt); swipeAction(container,opt); if (opt.hideThumbs>0) hideThumbs(container,opt); container.waitForImages(function() { // START THE FIRST SLIDE container.find('.tp-loader').fadeOut(600); setTimeout(function() { swapSlide(container,opt); // START COUNTDOWN if (opt.slideamount >1) countDown(container,opt); },600); }); }); // IF RESIZED, NEED TO STOP ACTUAL TRANSITION AND RESIZE ACTUAL IMAGES $(window).resize(function() { if (container.outerWidth(true)!=opt.width) { containerResized(container,opt); } }); }) }, // METHODE PAUSE revpause: function(options) { return this.each(function() { var container=$(this); container.data('conthover',1); container.data('conthover-changed',1); container.trigger('revolution.slide.onpause'); var bt = container.parent().find('.tp-bannertimer'); bt.stop(); }) }, // METHODE RESUME revresume: function(options) { return this.each(function() { var container=$(this); container.data('conthover',0); container.data('conthover-changed',1); container.trigger('revolution.slide.onresume'); var bt = container.parent().find('.tp-bannertimer'); var opt = bt.data('opt'); bt.animate({'width':"100%"},{duration:((opt.delay-opt.cd)-100),queue:false, easing:"linear"}); }) }, // METHODE NEXT revnext: function(options) { return this.each(function() { // CATCH THE CONTAINER var container=$(this); container.parent().find('.tp-rightarrow').click(); }) }, // METHODE RESUME revprev: function(options) { return this.each(function() { // CATCH THE CONTAINER var container=$(this); container.parent().find('.tp-leftarrow').click(); }) }, // METHODE LENGTH revmaxslide: function(options) { // CATCH THE CONTAINER return $(this).find('>ul:first-child >li').length; }, // METHODE JUMP TO SLIDE revshowslide: function(slide) { return this.each(function() { // CATCH THE CONTAINER var container=$(this); container.data('showus',slide); container.parent().find('.tp-rightarrow').click(); }) } }) ////////////////////////// // CONTAINER RESIZED // ///////////////////////// function containerResized(container,opt) { container.find('.defaultimg').each(function(i) { setSize($(this),opt); opt.height = Math.round(opt.startheight * (opt.width/opt.startwidth)); container.height(opt.height); setSize($(this),opt); try{ container.parent().find('.tp-bannershadow').css({'width':opt.width}); } catch(e) {} var actsh = container.find('>ul >li:eq('+opt.act+') .slotholder'); var nextsh = container.find('>ul >li:eq('+opt.next+') .slotholder'); removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':0}); actsh.find('.defaultimg').css({'opacity':1}); setCaptionPositions(container,opt); var nextli = container.find('>ul >li:eq('+opt.next+')'); container.find('.tp-caption').each(function() { $(this).stop(true,true);}); animateTheCaptions(nextli, opt); restartBannerTimer(opt,container); }); } //////////////////////////////// // RESTART THE BANNER TIMER // ////////////////////////////// function restartBannerTimer(opt,container) { opt.cd=0; if (opt.videoplaying !=true) { var bt= container.find('.tp-bannertimer'); if (bt.length>0) { bt.stop(); bt.css({'width':'0%'}); bt.animate({'width':"100%"},{duration:(opt.delay-100),queue:false, easing:"linear"}); } clearTimeout(opt.thumbtimer); opt.thumbtimer = setTimeout(function() { moveSelectedThumb(container); setBulPos(container,opt); },200); } } function callingNewSlide(opt,container) { opt.cd=0; swapSlide(container,opt); // STOP TIMER AND RESCALE IT var bt= container.find('.tp-bannertimer'); if (bt.length>0) { bt.stop(); bt.css({'width':'0%'}); bt.animate({'width':"100%"},{duration:(opt.delay-100),queue:false, easing:"linear"}); } } //////////////////////////////// // - CREATE THE BULLETS - // //////////////////////////////// function createThumbs(container,opt) { var cap=container.parent(); if (opt.navigationType=="thumb" || opt.navsecond=="both") { cap.append('
'); } var bullets = cap.find('.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer'); var bup = bullets.parent(); bup.width(opt.thumbWidth*opt.thumbAmount); bup.height(opt.thumbHeight); bup.parent().width(opt.thumbWidth*opt.thumbAmount); bup.parent().height(opt.thumbHeight); container.find('>ul:first >li').each(function(i) { var li= container.find(">ul:first >li:eq("+i+")"); if (li.data('thumb') !=undefined) var src= li.data('thumb') else var src=li.find("img:first").attr('src'); bullets.append('
'); var bullet= bullets.find('.bullet:first'); }); bullets.append('
'); var minwidth=1000; // ADD THE BULLET CLICK FUNCTION HERE bullets.find('.bullet').each(function(i) { var bul = $(this); if (i==opt.slideamount-1) bul.addClass('last'); if (i==0) bul.addClass('first'); bul.width(opt.thumbWidth); bul.height(opt.thumbHeight); if (minwidth>bul.outerWidth(true)) minwidth=bul.outerWidth(true); bul.click(function() { if (opt.transition==0 && bul.index() != opt.act) { opt.next = bul.index(); callingNewSlide(opt,container); } }); }); var max=minwidth*container.find('>ul:first >li').length; var thumbconwidth=bullets.parent().width(); opt.thumbWidth = minwidth; //////////////////////// // SLIDE TO POSITION // //////////////////////// if (thumbconwidthul:first >li').length; var diff=(max- thumbconwidth)+15; var steps = diff / thumbconwidth; x=x-30; //if (x<30) x=0; //if (x>thumbconwidth-30) x=thumbconwidth; //ANIMATE TO POSITION var pos=(0-((x)*steps)); if (pos>0) pos =0; if (pos<0-max+thumbconwidth) pos=0-max+thumbconwidth; moveThumbSliderToPosition($this,pos,200); }); bullets.parent().mousemove(function() { var $this=$(this); //if (!$this.hasClass("over")) { var offset = $this.offset(); var x = $('body').data('mousex')-offset.left; var thumbconwidth=$this.width(); var minwidth=$this.find('.bullet:first').outerWidth(true); var max=minwidth*container.find('>ul:first >li').length; var diff=(max- thumbconwidth)+15; var steps = diff / thumbconwidth; x=x-30; //if (x<30) x=0; //if (x>thumbconwidth-30) x=thumbconwidth; //ANIMATE TO POSITION var pos=(0-((x)*steps)); if (pos>0) pos =0; if (pos<0-max+thumbconwidth) pos=0-max+thumbconwidth; moveThumbSliderToPosition($this,pos,0); //} else { //$this.removeClass("over"); //} }); bullets.parent().mouseleave(function() { var $this=$(this); $this.removeClass("over"); moveSelectedThumb(container); }); } } /////////////////////////////// // SelectedThumbInPosition // ////////////////////////////// function moveSelectedThumb(container) { var bullets=container.parent().find('.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer'); var $this=bullets.parent(); var offset = $this.offset(); var minwidth=$this.find('.bullet:first').outerWidth(true); var x = $this.find('.bullet.selected').index() * minwidth; var thumbconwidth=$this.width(); var minwidth=$this.find('.bullet:first').outerWidth(true); var max=minwidth*container.find('>ul:first >li').length; var diff=(max- thumbconwidth); var steps = diff / thumbconwidth; //ANIMATE TO POSITION var pos=0-x; if (pos>0) pos =0; if (pos<0-max+thumbconwidth) pos=0-max+thumbconwidth; if (!$this.hasClass("over")) { moveThumbSliderToPosition($this,pos,200); } } //////////////////////////////////// // MOVE THUMB SLIDER TO POSITION // /////////////////////////////////// function moveThumbSliderToPosition($this,pos,speed) { $this.stop(); $this.find('.tp-thumbcontainer').animate({'left':pos+'px'},{duration:speed,queue:false}); } //////////////////////////////// // - CREATE THE BULLETS - // //////////////////////////////// function createBullets(container,opt) { if (opt.navigationType=="bullet" || opt.navigationType=="both") { container.parent().append('
'); } var bullets = container.parent().find('.tp-bullets'); container.find('>ul:first >li').each(function(i) { var src=container.find(">ul:first >li:eq("+i+") img:first").attr('src'); bullets.append('
'); var bullet= bullets.find('.bullet:first'); }); // ADD THE BULLET CLICK FUNCTION HERE bullets.find('.bullet').each(function(i) { var bul = $(this); if (i==opt.slideamount-1) bul.addClass('last'); if (i==0) bul.addClass('first'); bul.click(function() { if (opt.transition==0 && bul.index() != opt.act) { opt.next = bul.index(); callingNewSlide(opt,container); } }); }); bullets.append('
'); setBulPos(container,opt); $('#unvisible_button').click(function() { opt.navigationArrows=$('.selectnavarrows').val(); opt.navigationType=$('.selectnavtype').val(); setBulPos(container,opt); setTimeout(function() { setBulPos(container,opt); },100); }); } ////////////////////// // CREATE ARROWS // ///////////////////// function createArrows(container,opt) { var bullets = container.find('.tp-bullets'); var hidden=""; if (opt.navigationArrow=="none") hidden="visibility:none"; container.parent().append('
'); container.parent().append('
'); // THE LEFT / RIGHT BUTTON CLICK ! // container.parent().find('.tp-rightarrow').click(function() { if (opt.transition==0) { if (container.data('showus') !=undefined && container.data('showus') != -1) opt.next = container.data('showus')-1; else opt.next = opt.next+1; container.data('showus',-1); if (opt.next >= opt.slideamount) opt.next=0; if (opt.next<0) opt.next=0; if (opt.act !=opt.next) callingNewSlide(opt,container); } }); container.parent().find('.tp-leftarrow').click(function() { if (opt.transition==0) { opt.next = opt.next-1; opt.leftarrowpressed=1; if (opt.next < 0) opt.next=opt.slideamount-1; callingNewSlide(opt,container); } }); setBulPos(container,opt); } //////////////////////////// // SET THE SWIPE FUNCTION // //////////////////////////// function swipeAction(container,opt) { // TOUCH ENABLED SCROLL if (opt.touchenabled=="on") container.swipe( {data:container, swipeRight:function() { if (opt.transition==0) { opt.next = opt.next-1; opt.leftarrowpressed=1; if (opt.next < 0) opt.next=opt.slideamount-1; callingNewSlide(opt,container); } }, swipeLeft:function() { if (opt.transition==0) { opt.next = opt.next+1; if (opt.next == opt.slideamount) opt.next=0; callingNewSlide(opt,container); } }, allowPageScroll:"auto"} ); } //////////////////////////////////////////////////////////////// // SHOW AND HIDE THE THUMBS IF MOUE GOES OUT OF THE BANNER /// ////////////////////////////////////////////////////////////// function hideThumbs(container,opt) { var bullets = container.parent().find('.tp-bullets'); var ca = container.parent().find('.tparrows'); if (bullets==null) { container.append('
'); var bullets = container.parent().find('.tp-bullets'); } if (ca==null) { container.append('
'); var ca = container.parent().find('.tparrows'); } //var bp = (thumbs.parent().outerHeight(true) - opt.height)/2; // ADD THUMBNAIL IMAGES FOR THE BULLETS // container.data('hidethumbs',opt.hideThumbs); if (opt.ie) { bullets.css({'visibility':'hidden'}); ca.css({'visibility':'hidden'}); } else { try { bullets.css({'opacity':0}); } catch(e) {} try { ca.css({'opacity':0}); } catch(e) {} } bullets.hover(function() { bullets.addClass("hovered"); clearTimeout(container.data('hidethumbs')); bullets.animate({'opacity':1},{duration:200,queue:false}); ca.animate({'opacity':1},{duration:200,queue:false}); }, function() { bullets.removeClass("hovered"); if (!container.hasClass("hovered") && !bullets.hasClass("hovered")) container.data('hidethumbs', setTimeout(function() { if (opt.ie) { bullets.css({'visibility':'hidden'}); ca.css({'visibility':'hidden'}); } else { bullets.animate({'opacity':0},{duration:200,queue:false}); ca.animate({'opacity':0},{duration:200,queue:false}); } },opt.hideThumbs)); }); ca.hover(function() { bullets.addClass("hovered"); clearTimeout(container.data('hidethumbs')); if (opt.ie) { bullets.css({'visibility':'visible'}); ca.css({'visibility':'visible'}); } else { bullets.animate({'opacity':1},{duration:200,queue:false}); ca.animate({'opacity':1},{duration:200,queue:false}); } }, function() { bullets.removeClass("hovered"); if (!container.hasClass("hovered") && !bullets.hasClass("hovered")) container.data('hidethumbs', setTimeout(function() { if (opt.ie) { bullets.css({'visibility':'hidden'}); ca.css({'visibility':'hidden'}); } else { bullets.animate({'opacity':0},{duration:200,queue:false}); ca.animate({'opacity':0},{duration:200,queue:false}); } },opt.hideThumbs)); }); container.on('mouseenter', function() { container.addClass("hovered"); clearTimeout(container.data('hidethumbs')); if (opt.ie) { bullets.css({'visibility':'visible'}); ca.css({'visibility':'visible'}); } else { bullets.animate({'opacity':1},{duration:200,queue:false}); ca.animate({'opacity':1},{duration:200,queue:false}); } }); container.on('mouseleave', function() { container.removeClass("hovered"); if (!container.hasClass("hovered") && !bullets.hasClass("hovered")) container.data('hidethumbs', setTimeout(function() { if (opt.ie) { bullets.css({'visibility':'hidden'}); ca.css({'visibility':'hidden'}); } else { bullets.animate({'opacity':0},{duration:200,queue:false}); ca.animate({'opacity':0},{duration:200,queue:false}); } },opt.hideThumbs)); }); } ////////////////////////////// // SET POSITION OF BULLETS // ////////////////////////////// function setBulPos(container,opt) { /* FOR THE PREVIEW WE NEED TO HANDLE IF BOTH NAVIGATION IS LOADED */ if (opt.navigationType=="both") { opt.navigationType="bullet"; opt.navsecond = "both"; } if (opt.navigationType=="none" && opt.navigationArrows!="none") opt.navigationArrows="verticalcentered"; opt.navOH = opt.navOffsetHorizontal * opt.bw; opt.navOV = opt.navOffsetVertical * opt.bh; if (opt.bw!=1) opt.navOH=0; // SOME HELP var cap=container.parent(); var la=cap.find('.tp-leftarrow'); var ra=cap.find('.tp-rightarrow'); ////////////////////////////////////// // THE BULLET NAVIGATION POSITIONS // ///////////////////////////////////// if (opt.navigationType=="bullet") { var bullets = cap.find('.tp-bullets.simplebullets'); var navb = cap.find('.tp-bullets.simplebullets.navbar') bullets.css({'visibility':'visible'}); try{ cap.find('.tp-thumbs').css({'visibility':'hidden'}); if (opt.ie) cap.find('.tp-thumbs').remove(); } catch(e) {} var fulllong=bullets.width(); if (!bullets.hasClass("tp-thumbs")) { fulllong=0; bullets.find('.bullet').each(function() { fulllong = fulllong + $(this).outerWidth(true);}); bullets.css({'width':(fulllong)+"px"}); } var ldiff = cap.outerWidth()- opt.width; bullets.css({'left':(opt.navOH) + (ldiff/2)+(opt.width/2 - fulllong/2)+"px", 'bottom':opt.navOV+"px"}); if (opt.navigationArrows=="nexttobullets") { la.removeClass("large"); ra.removeClass("large"); la.removeClass("thumbswitharrow"); ra.removeClass("thumbswitharrow"); la.css({'visibility':'visible'}); ra.css({'visibility':'visible'}); var diff = 0; la.css({'position':'absolute','left': (bullets.position().left - la.outerWidth(true))+"px", 'top': bullets.position().top+"px"}); ra.css({'position':'absolute','left': (bullets.outerWidth(true) + bullets.position().left)+"px", 'top':bullets.position().top+"px"}); try { navb.css({'paddingLeft':'40px', 'paddingRight':'40px','margin-left':'-40px'}); } catch(e) {} } else { if (opt.navigationArrows=="verticalcentered") { la.addClass("large"); ra.addClass("large"); la.css({'visibility':'visible'}); ra.css({'visibility':'visible'}); var decorh=cap.outerHeight(); la.css({'position':'absolute','left': Math.round((ldiff/2))+"px",'top': Math.round((decorh/2))+"px"}); ra.css({'position':'absolute','left': Math.round((opt.width - ra.outerWidth()+ldiff/2))+"px",'top': Math.round((decorh/2))+"px"}); try { navb.css({'paddingLeft':'10px', 'paddingRight':'10px','margin-left':'-10px'}); } catch(e) {} } else { la.css({'visibility':'hidden'}); ra.css({'visibility':'hidden'}); try { navb.css({'paddingLeft':'10px', 'paddingRight':'10px','margin-left':'-10px'}); } catch(e) {} } } } else { ////////////////////////////////////// // THE THUMBS NAVIGATION POSITIONS // ///////////////////////////////////// if (opt.navigationType=="thumb") { var thumbs=cap.find('.tp-thumbs'); try{ cap.find('.tp-bullets').css({'visibility':'hidden'}); } catch(e) {} thumbs.css({'visibility':'visible'}); var decorh=thumbs.parent().outerHeight(); var ldiff = cap.outerWidth()- opt.width; thumbs.css({'left':(opt.navOH) + (opt.width/2 - thumbs.width()/2)+"px"}); thumbs.css({'bottom':(0-thumbs.outerHeight(true) + (opt.navOV))+"px"}); if (opt.navigationArrows=="verticalcentered") { la.css({'visibility':'visible'}); ra.css({'visibility':'visible'}); la.addClass("large"); ra.addClass("large"); la.css({'position':'absolute','left': Math.round((ldiff/2))+"px",'top': Math.round((cap.outerHeight()/2 ))+"px"}); ra.css({'position':'absolute','left': Math.round((opt.width - ra.outerWidth()+ldiff/2))+"px",'top': Math.round((cap.outerHeight()/2))+"px"}); } else { la.css({'visibility':'hidden'}); ra.css({'visibility':'hidden'}); } } else { if (opt.navigationType=="none") { try{ cap.find('.tp-bullets').css({'visibility':'hidden'}); } catch(e) {} try{ cap.find('.tp-thumbs').css({'visibility':'hidden'});} catch(e) {} if (opt.navigationArrows!="none") { var ldiff = cap.outerWidth()- opt.width; la.css({'visibility':'visible'}); ra.css({'visibility':'visible'}); la.addClass("large"); ra.addClass("large"); la.css({'position':'absolute','left': Math.round((ldiff/2))+"px",'top': Math.round((cap.outerHeight()/2))+"px"}); ra.css({'position':'absolute','left': Math.round((opt.width - ra.outerWidth()+ldiff/2))+"px",'top': Math.round((cap.outerHeight()/2))+"px"}); } else { la.css({'visibility':'hidden'}); ra.css({'visibility':'hidden'}); } } } } } ////////////////////////////////////////////////////////// // - SET THE IMAGE SIZE TO FIT INTO THE CONTIANER - // //////////////////////////////////////////////////////// function setSize(img,opt) { opt.width=parseInt(opt.container.width(),0); opt.height=parseInt(opt.container.height(),0); opt.bw = opt.width / opt.startwidth; opt.bh = opt.height / opt.startheight; if (opt.bh>1) { opt.bw=1; opt.bh=1; } // IF IMG IS ALREADY PREPARED, WE RESET THE SIZE FIRST HERE if (img.data('orgw')!=undefined) { img.width(img.data('orgw')); img.height(img.data('orgh')); } var fw = opt.width / img.width(); var fh = opt.height / img.height(); opt.fw = fw; opt.fh = fh; if (img.data('orgw')==undefined) { img.data('orgw',img.width()); img.data('orgh',img.height()); } if (opt.fullWidth=="on") { var cow = opt.container.parent().width(); var coh = opt.container.parent().height(); var ffh = coh / img.data('orgh'); var ffw = cow / img.data('orgw'); img.width(img.width()*ffh); img.height(coh); if (img.width()cow) { img.data("fxof",(cow/2 - img.width()/2)); img.css({'position':'absolute','left':img.data('fxof')+"px"}); } if (img.height()<=coh) { img.data('fyof',0); img.css({'position':'absolute','top':img.data('fyof')+"px"}); } if (img.height()>coh && img.data('fullwidthcentering')=="on") { img.data('fyof',(coh/2 - img.height()/2)); img.css({'position':'absolute','top':img.data('fyof')+"px"}); } } else { img.width(opt.width); img.height(img.height()*fw); if (img.height()ul:first >li').each(function(j) { var li=$(this); if (li.data('link')!=undefined) { var link = li.data('link'); var target="_self"; var linktoslide=li.data('linktoslide'); if (li.data('target')!=undefined) target=li.data('target'); if (link=="slide") { li.append(''); } else { linktoslide="no"; li.append(''); } } }); container.find('>ul:first >li >img').each(function(j) { var img=$(this); var link = img.data('link'); img.addClass('defaultimg'); setSize(img,opt); setSize(img,opt); img.wrap('
'); img.css({'opacity':0}); img.data('li-id',j); }); } /////////////////////// // PREPARE THE SLIDE // ////////////////////// function prepareOneSlide(slotholder,opt,visible) { var sh=slotholder; var img = sh.find('img') setSize(img,opt) var src = img.attr('src'); var w = img.data('neww'); var h = img.data('newh'); var fulloff = img.data("fxof"); if (fulloff==undefined) fulloff=0; var fullyoff=img.data("fyof"); if (img.data('fullwidthcentering')!="on" || fullyoff==undefined) fullyoff=0; var off=0; if (!visible) var off=0-opt.slotw; for (var i=0;i
'); } /////////////////////// // PREPARE THE SLIDE // ////////////////////// function prepareOneSlideV(slotholder,opt,visible) { var sh=slotholder; var img = sh.find('img') setSize(img,opt) var src = img.attr('src'); var w = img.data('neww'); var h = img.data('newh'); var fulloff = img.data("fxof"); if (fulloff==undefined) fulloff=0; var fullyoff=img.data("fyof"); if (img.data('fullwidthcentering')!="on" || fullyoff==undefined) fullyoff=0; var off=0; if (!visible) var off=0-opt.sloth; for (var i=0;i
'); } /////////////////////// // PREPARE THE SLIDE // ////////////////////// function prepareOneSlideBox(slotholder,opt,visible) { var sh=slotholder; var img = sh.find('img') setSize(img,opt) var src = img.attr('src'); var w = img.data('neww'); var h = img.data('newh'); var fulloff = img.data("fxof"); if (fulloff==undefined) fulloff=0; var fullyoff=img.data("fyof"); if (img.data('fullwidthcentering')!="on" || fullyoff==undefined) fullyoff=0; var off=0; // SET THE MINIMAL SIZE OF A BOX var basicsize = 0; if (opt.sloth>opt.slotw) basicsize=opt.sloth else basicsize=opt.slotw; if (!visible) { var off=0-basicsize; } opt.slotw = basicsize; opt.sloth = basicsize; var x=0; var y=0; for (var j=0;j'+ '
'+ '
'); y=y+basicsize; } x=x+basicsize; } } /////////////////////// // REMOVE SLOTS // ///////////////////// function removeSlots(container,opt,time) { if (time==undefined) time==80 setTimeout(function() { container.find('.slotholder .slot').each(function() { clearTimeout($(this).data('tout')); $(this).remove(); }); opt.transition = 0; },time); } //////////////////////// // CAPTION POSITION // /////////////////////// function setCaptionPositions(container,opt) { // FIND THE RIGHT CAPTIONS var actli = container.find('>li:eq('+opt.act+')'); var nextli = container.find('>li:eq('+opt.next+')'); // SET THE NEXT CAPTION AND REMOVE THE LAST CAPTION var nextcaption=nextli.find('.tp-caption'); if (nextcaption.find('iframe')==0) { // MOVE THE CAPTIONS TO THE RIGHT POSITION if (nextcaption.hasClass('hcenter')) nextcaption.css({'height':opt.height+"px",'top':'0px','left':(opt.width/2 - nextcaption.outerWidth()/2)+'px'}); else if (nextcaption.hasClass('vcenter')) nextcaption.css({'width':opt.width+"px",'left':'0px','top':(opt.height/2 - nextcaption.outerHeight()/2)+'px'}); } } ////////////////////////////// // // // - SWAP THE SLIDES - // // // //////////////////////////// function swapSlide(container,opt) { opt.transition = 1; opt.videoplaying = false; try{ var actli = container.find('>ul:first-child >li:eq('+opt.act+')'); } catch(e) { var actli=container.find('>ul:first-child >li:eq(1)'); } var nextli = container.find('>ul:first-child >li:eq('+opt.next+')'); var actsh = actli.find('.slotholder'); var nextsh = nextli.find('.slotholder'); actli.css({'visibility':'visible'}); nextli.css({'visibility':'visible'}); if (opt.ie) { if (nextli.data('transition')=="boxfade") nextli.data('transition',"boxslide"); if (nextli.data('transition')=="slotfade-vertical") nextli.data('transition',"slotzoom-vertical"); if (nextli.data('transition')=="slotfade-horizontal") nextli.data('transition',"slotzoom-horizontal"); } // IF DELAY HAS BEEN SET VIA THE SLIDE, WE TAKE THE NEW VALUE, OTHER WAY THE OLD ONE... if (nextli.data('delay')!=undefined) { opt.cd=0; opt.delay=nextli.data('delay'); } else { opt.delay=opt.origcd; } // RESET POSITION AND FADES OF LI'S actli.css({'left':'0px','top':'0px'}); nextli.css({'left':'0px','top':'0px'}); /////////////////////////////////////// // TRANSITION CHOOSE - RANDOM EFFECTS// /////////////////////////////////////// var nexttrans = 0; if (nextli.data('transition')=="boxslide") nexttrans = 0 else if (nextli.data('transition')=="boxfade") nexttrans = 1 else if (nextli.data('transition')=="slotslide-horizontal") nexttrans = 2 else if (nextli.data('transition')=="slotslide-vertical") nexttrans = 3 else if (nextli.data('transition')=="curtain-1") nexttrans = 4 else if (nextli.data('transition')=="curtain-2") nexttrans = 5 else if (nextli.data('transition')=="curtain-3") nexttrans = 6 else if (nextli.data('transition')=="slotzoom-horizontal") nexttrans = 7 else if (nextli.data('transition')=="slotzoom-vertical") nexttrans = 8 else if (nextli.data('transition')=="slotfade-horizontal") nexttrans = 9 else if (nextli.data('transition')=="slotfade-vertical") nexttrans = 10 else if (nextli.data('transition')=="fade") nexttrans = 11 else if (nextli.data('transition')=="slideleft") nexttrans = 12 else if (nextli.data('transition')=="slideup") nexttrans = 13 else if (nextli.data('transition')=="slidedown") nexttrans = 14 else if (nextli.data('transition')=="slideright") nexttrans = 15; else if (nextli.data('transition')=="papercut") nexttrans = 16; else if (nextli.data('transition')=="3dcurtain-horizontal") nexttrans = 17; else if (nextli.data('transition')=="3dcurtain-vertical") nexttrans = 18; else if (nextli.data('transition')=="cubic") nexttrans = 19; else if (nextli.data('transition')=="flyin") nexttrans = 20; else if (nextli.data('transition')=="turnoff") nexttrans = 21; else { nexttrans=Math.round(Math.random()*21); nextli.data('slotamount',Math.round(Math.random()*12+4)); } if (nextli.data('transition')=="random-static") { nexttrans=Math.round(Math.random()*16); if (nexttrans>15) nexttrans=15; if (nexttrans<0) nexttrans=0; } if (nextli.data('transition')=="random-premium") { nexttrans=Math.round(Math.random()*6+16); if (nexttrans>21) nexttrans=21; if (nexttrans<16) nexttrans=16; } var direction=-1; if (opt.leftarrowpressed==1 || opt.act>opt.next) direction=1; if (nextli.data('transition')=="slidehorizontal") { nexttrans = 12 if (opt.leftarrowpressed==1) nexttrans = 15 } if (nextli.data('transition')=="slidevertical") { nexttrans = 13 if (opt.leftarrowpressed==1) nexttrans = 14 } opt.leftarrowpressed=0; if (nexttrans>21) nexttrans = 21; if (nexttrans<0) nexttrans = 0; if (!$.support.transition && nexttrans >16) { nexttrans=Math.round(Math.random()*16); nextli.data('slotamount',Math.round(Math.random()*12+4)); }; if (opt.ie && (nexttrans==17 || nexttrans==16 || nexttrans==2 || nexttrans==3 || nexttrans==9 || nexttrans==10 )) nexttrans=Math.round(Math.random()*3+12); if (opt.ie9 && (nexttrans==3)) nexttrans = 4; //$('body').find('.debug').html("Transition:"+nextli.data('transition')+" id:"+nexttrans); // DEFINE THE MASTERSPEED FOR THE SLIDE // var masterspeed=300; if (nextli.data('masterspeed')!=undefined && nextli.data('masterspeed')>99 && nextli.data('masterspeed')<4001) masterspeed = nextli.data('masterspeed'); ///////////////////////////////////////////// // SET THE BULLETS SELECTED OR UNSELECTED // ///////////////////////////////////////////// container.parent().find(".bullet").each(function() { var bul = $(this); bul.removeClass("selected"); if (bul.index() == opt.next) bul.addClass('selected'); }); ////////////////////////////////////////////////////////////////// // SET THE NEXT CAPTION AND REMOVE THE LAST CAPTION // ////////////////////////////////////////////////////////////////// container.find('>li').each(function() { var li = $(this); if (li.index!=opt.act && li.index!=opt.next) li.css({'z-index':16}); }); actli.css({'z-index':18}); nextli.css({'z-index':20}); nextli.css({'opacity':0}); /////////////////////////// // ANIMATE THE CAPTIONS // /////////////////////////// removeTheCaptions(actli,opt); animateTheCaptions(nextli, opt); ///////////////////////////////////////////// // SET THE ACTUAL AMOUNT OF SLIDES !! // // SET A RANDOM AMOUNT OF SLOTS // /////////////////////////////////////////// if (nextli.data('slotamount')==undefined || nextli.data('slotamount')<1) { opt.slots=Math.round(Math.random()*12+4); if (nextli.data('transition')=="boxslide") opt.slots=Math.round(Math.random()*6+3); } else { opt.slots=nextli.data('slotamount'); } ///////////////////////////////////////////// // SET THE ACTUAL AMOUNT OF SLIDES !! // // SET A RANDOM AMOUNT OF SLOTS // /////////////////////////////////////////// if (nextli.data('rotate')==undefined) opt.rotate = 0 else if (nextli.data('rotate')==999) opt.rotate=Math.round(Math.random()*360); else opt.rotate=nextli.data('rotate'); if (!$.support.transition || opt.ie || opt.ie9) opt.rotate=0; ////////////////////////////// // FIRST START // ////////////////////////////// if (opt.firststart==1) { actli.css({'opacity':0}); opt.firststart=0; } ///////////////////////////////////// // THE SLOTSLIDE - TRANSITION I. // //////////////////////////////////// if (nexttrans==0) { // BOXSLIDE masterspeed = masterspeed + 100; if (opt.slots>10) opt.slots=10; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlideBox(actsh,opt,true); prepareOneSlideBox(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(j) { var ss=$(this); if (opt.ie9) ss.transition({top:(0-opt.sloth),left:(0-opt.slotw)},0); else ss.transition({top:(0-opt.sloth),left:(0-opt.slotw), rotate:opt.rotate},0); setTimeout(function() { ss.transition({top:0, left:0, scale:1, rotate:0},masterspeed*1.5,function() { if (j==(opt.slots*opt.slots)-1) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); },j*15); }); } ///////////////////////////////////// // THE SLOTSLIDE - TRANSITION I. // //////////////////////////////////// if (nexttrans==1) { if (opt.slots>5) opt.slots=5; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE //prepareOneSlideBox(actsh,opt,true); prepareOneSlideBox(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(j) { var ss=$(this); ss.css({'opacity':0}); ss.find('img').css({'opacity':0}); if (opt.ie9) ss.find('img').transition({'top':(Math.random()*opt.slotw-opt.slotw)+"px",'left':(Math.random()*opt.slotw-opt.slotw)+"px"},0); else ss.find('img').transition({'top':(Math.random()*opt.slotw-opt.slotw)+"px",'left':(Math.random()*opt.slotw-opt.slotw)+"px", rotate:opt.rotate},0); var rand=Math.random()*1000+(masterspeed + 200); if (j==(opt.slots*opt.slots)-1) rand=1500; ss.find('img').transition({'opacity':1,'top':(0-ss.data('y'))+"px",'left':(0-ss.data('x'))+'px', rotate:0},rand); ss.transition({'opacity':1},rand,function() { if (j==(opt.slots*opt.slots)-1) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); }); } ///////////////////////////////////// // THE SLOTSLIDE - TRANSITION I. // //////////////////////////////////// if (nexttrans==2) { masterspeed = masterspeed + 200; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlide(actsh,opt,true); prepareOneSlide(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); // ALL OLD SLOTS SHOULD BE SLIDED TO THE RIGHT actsh.find('.slotslide').each(function() { var ss=$(this); //ss.animate({'left':opt.slotw+'px'},{duration:masterspeed,queue:false,complete:function() { ss.transit({'left':opt.slotw+'px',rotate:(0-opt.rotate)},masterspeed,function() { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); }); }); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function() { var ss=$(this); if (opt.ie9) ss.transit({'left':(0-opt.slotw)+"px"},0); else ss.transit({'left':(0-opt.slotw)+"px",rotate:opt.rotate},0); ss.transit({'left':'0px',rotate:0},masterspeed,function() { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); if (opt.ie) actsh.find('.defaultimg').css({'opacity':1}); opt.act=opt.next; moveSelectedThumb(container); }); }); } ///////////////////////////////////// // THE SLOTSLIDE - TRANSITION I. // //////////////////////////////////// if (nexttrans==3) { masterspeed = masterspeed + 200; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlideV(actsh,opt,true); prepareOneSlideV(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); // ALL OLD SLOTS SHOULD BE SLIDED TO THE RIGHT actsh.find('.slotslide').each(function() { var ss=$(this); ss.transit({'top':opt.sloth+'px',rotate:opt.rotate},masterspeed,function() { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); }); }); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function() { var ss=$(this); if (opt.ie9) ss.transit({'top':(0-opt.sloth)+"px"},0); else ss.transit({'top':(0-opt.sloth)+"px",rotate:opt.rotate},0); ss.transit({'top':'0px',rotate:0},masterspeed,function() { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); }); }); } ///////////////////////////////////// // THE SLOTSLIDE - TRANSITION I. // //////////////////////////////////// if (nexttrans==4) { nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlide(actsh,opt,true); prepareOneSlide(nextsh,opt,true); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); actsh.find('.defaultimg').css({'opacity':0}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT actsh.find('.slotslide').each(function(i) { var ss=$(this); ss.transit({'top':(0+(opt.height))+"px",'opacity':1,rotate:opt.rotate},masterspeed+(i*(70-opt.slots))); }); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(i) { var ss=$(this); if (opt.ie9) ss.transition({'top':(0-(opt.height))+"px",'opacity':0},0); else ss.transition({'top':(0-(opt.height))+"px",'opacity':0,rotate:opt.rotate},0); ss.transition({'top':'0px','opacity':1,rotate:0},masterspeed+(i*(70-opt.slots)),function() { if (i==opt.slots-1) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); }); } ///////////////////////////////////// // THE SLOTSLIDE - TRANSITION I. // //////////////////////////////////// if (nexttrans==5) { nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlide(actsh,opt,true); prepareOneSlide(nextsh,opt,true); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); actsh.find('.defaultimg').css({'opacity':0}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT actsh.find('.slotslide').each(function(i) { var ss=$(this); ss.transition({'top':(0+(opt.height))+"px",'opacity':1,rotate:opt.rotate},masterspeed+((opt.slots-i)*(70-opt.slots))); }); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(i) { var ss=$(this); if (opt.ie9) ss.transition({'top':(0-(opt.height))+"px",'opacity':0},0); else ss.transition({'top':(0-(opt.height))+"px",'opacity':0,rotate:opt.rotate},0); ss.transition({'top':'0px','opacity':1,rotate:0},masterspeed+((opt.slots-i)*(70-opt.slots)),function() { if (i==0) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); }); } ///////////////////////////////////// // THE SLOTSLIDE - TRANSITION I. // //////////////////////////////////// if (nexttrans==6) { nextli.css({'opacity':1}); if (opt.slots<2) opt.slots=2; // PREPARE THE SLOTS HERE prepareOneSlide(actsh,opt,true); prepareOneSlide(nextsh,opt,true); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); actsh.find('.defaultimg').css({'opacity':0}); actsh.find('.slotslide').each(function(i) { var ss=$(this); if (i'); actli.find('.tp-half-one').clone(true).appendTo(actli).addClass("tp-half-two"); actli.find('.tp-half-two').removeClass('tp-half-one'); actli.find('.tp-half-two').wrapInner('
'); // ANIMATE THE CUTS var img=actli.find('.defaultimg'); if (img.length>0 && img.data("fullwidthcentering")=="on") { var imgh=img.height()/2; var to=img.position().top; } else { var imgh=opt.height/2; var to=0; } actli.find('.tp-half-one').css({'width':opt.width+"px",'height':(to+imgh)+"px",'overflow':'hidden','position':'absolute','top':'0px','left':'0px'}); actli.find('.tp-half-two').css({'width':opt.width+"px",'height':(to+imgh)+"px",'overflow':'hidden','position':'absolute','top':(to+imgh)+'px','left':'0px'}); actli.find('.tp-half-two .tp-offset').css({'position':'absolute','top':(0-imgh-to)+'px','left':'0px'}); // Delegate .transition() calls to .animate() // if the browser can't do CSS transitions. if (!$.support.transition) { actli.find('.tp-half-one').animate({'opacity':0,'top':(0-opt.height/2)+"px"},{duration: 500,queue:false}); actli.find('.tp-half-two').animate({'opacity':0,'top':(opt.height)+"px"},{duration: 500,queue:false}); } else { var ro1=Math.round(Math.random()*40-20); var ro2=Math.round(Math.random()*40-20); var sc1=Math.random()*1+1; var sc2=Math.random()*1+1; actli.find('.tp-half-one').transition({opacity:1, scale:sc1, rotate:ro1,y:(0-opt.height/1.4)+"px"},800,'in'); actli.find('.tp-half-two').transition({opacity:1, scale:sc2, rotate:ro2,y:(0+opt.height/1.4)+"px"},800,'in'); if (actli.html()!=null) nextli.transition({scale:0.8,x:opt.width*0.1, y:opt.height*0.1, rotate:ro1},0).transition({rotate:0, scale:1,x:0,y:0},600,'snap'); } nextsh.find('.defaultimg').css({'opacity':1}); setTimeout(function() { // CLEAN UP BEFORE WE START actli.css({'position':'absolute','z-index':18}); nextli.css({'position':'absolute','z-index':20}); nextsh.find('.defaultimg').css({'opacity':1}); actsh.find('.defaultimg').css({'opacity':0}); if (actli.find('.tp-half-one').length>0) { actli.find('.tp-half-one >img, .tp-half-one >div').unwrap(); } actli.find('.tp-half-two').remove(); opt.transition = 0; opt.act = opt.next; },800); nextli.css({'opacity':1}); } //////////////////////////////////////// // THE SLOTSLIDE - TRANSITION XVII. // /////////////////////////////////////// if (nexttrans==17) { // 3D CURTAIN HORIZONTAL masterspeed = masterspeed + 100; if (opt.slots>10) opt.slots=10; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlideV(actsh,opt,true); prepareOneSlideV(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(j) { var ss=$(this); ss.transition({ opacity:0, rotateY:350 ,rotateX:40, perspective:'1400px'},0); setTimeout(function() { ss.transition({opacity:1, top:0, left:0, scale:1, perspective:'150px', rotate:0,rotateY:0, rotateX:0},masterspeed*2,function() { if (j==opt.slots-1) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); },j*100); }); } //////////////////////////////////////// // THE SLOTSLIDE - TRANSITION XVIII. // /////////////////////////////////////// if (nexttrans==18) { // 3D CURTAIN VERTICAL masterspeed = masterspeed + 100; if (opt.slots>10) opt.slots=10; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlide(actsh,opt,true); prepareOneSlide(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(j) { var ss=$(this); ss.transition({ rotateX:10 ,rotateY:310, perspective:'1400px', rotate:0,opacity:0},0); setTimeout(function() { ss.transition({top:0, left:0, scale:1, perspective:'150px', rotate:0,rotateY:0, rotateX:0,opacity:1},masterspeed*2,function() { if (j==opt.slots-1) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); },j*100); }); } //////////////////////////////////////// // THE SLOTSLIDE - TRANSITION XIX. // /////////////////////////////////////// if (nexttrans==19) { // CUBIC VERTICAL masterspeed = masterspeed + 100; if (opt.slots>10) opt.slots=10; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlide(actsh,opt,true); prepareOneSlide(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); var chix=nextli.css('z-index'); var chix2=actli.css('z-index'); //actli.css({'z-index':22}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(j) { var ss=$(this); //ss.css({'overflow':'visible'}); ss.parent().css({'overflow':'visible'}); ss.css({'background':'#333'}); if (direction==1) ss.transition({ opacity:0,left:0,top:opt.height/2,perspective:opt.height*100,rotate3d:'1, 0, 0, -90deg '},0); else ss.transition({ opacity:0,left:0,top:0-opt.height/2,perspective:opt.height*100,rotate3d:'1, 0, 0, 90deg '},0); setTimeout(function() { ss.transition({opacity:1,top:0,rotate3d:' 1, 0, 0, 0deg '},masterspeed*2,function() { if (j==opt.slots-1) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); },j*150); }); actsh.find('.slotslide').each(function(j) { var ss=$(this); ss.parent().css({'overflow':'visible'}); ss.css({'background':'#333'}); ss.transition({ top:0,perspective: opt.height*100,rotate3d: '1, 0, 0, 0deg'},0); actsh.find('.defaultimg').css({'opacity':0}); setTimeout(function() { if (direction==1) ss.transition({opacity:0.6,left:0,top:0-opt.height/2,rotate3d: '1, 0, 0, 90deg'},masterspeed*2,function() {}); else ss.transition({opacity:0.6,left:0,top:(0+opt.height/2),rotate3d: '1, 0, 0, -90deg'},masterspeed*2,function() {}); },j*150); }); } //////////////////////////////////////// // THE SLOTSLIDE - TRANSITION XX. // /////////////////////////////////////// if (nexttrans==20) { // FLYIN masterspeed = masterspeed + 100; if (opt.slots>10) opt.slots=10; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlideV(actsh,opt,true); prepareOneSlideV(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(j) { var ss=$(this); ss.parent().css({'overflow':'visible'}); if (direction==1) ss.transition({ scale:0.8,top:0,left:0-opt.width,perspective:opt.width,rotate3d: '2, 5, 0, 110deg'},0); else ss.transition({ scale:0.8,top:0,left:0+opt.width,perspective:opt.width,rotate3d: '2, 5, 0, -110deg'},0); setTimeout(function() { ss.transition({ scale:0.8,left:0,perspective: opt.width,rotate3d: '1, 5, 0, 0deg'},masterspeed*2,'ease').transition({scale:1},200,'out',function() { if (j==opt.slots-1) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); },j*100); }); actsh.find('.slotslide').each(function(j) { var ss=$(this); ss.transition({ scale:0.5,left:0,perspective: 500,rotate3d: '1, 5, 0, 5deg'},300,'in-out'); actsh.find('.defaultimg').css({'opacity':0}); setTimeout(function() { if (direction==1) ss.transition({top:0,left:opt.width/2,perspective: opt.width,rotate3d: '0, -3, 0, 70deg',opacity:0},masterspeed*2,'out',function() {}); else ss.transition({top:0,left:0-opt.width/2,perspective: opt.width,rotate3d: '0, -3, 0, -70deg',opacity:0},masterspeed*2,'out',function() {}); },j*100); }); } //////////////////////////////////////// // THE SLOTSLIDE - TRANSITION XX. // /////////////////////////////////////// if (nexttrans==21) { // TURNOFF masterspeed = masterspeed + 100; if (opt.slots>10) opt.slots=10; nextli.css({'opacity':1}); // PREPARE THE SLOTS HERE prepareOneSlideV(actsh,opt,true); prepareOneSlideV(nextsh,opt,false); //SET DEFAULT IMG UNVISIBLE nextsh.find('.defaultimg').css({'opacity':0}); //actsh.find('.defaultimg').css({'opacity':0}); // ALL NEW SLOTS SHOULD BE SLIDED FROM THE LEFT TO THE RIGHT nextsh.find('.slotslide').each(function(j) { var ss=$(this); if (direction==1) ss.transition({ top:0,left:0-(opt.width/2),perspective: opt.width*2,rotate3d: '0, 100, 0, 90deg'},0); else ss.transition({ top:0,left:0+(opt.width/2),perspective: opt.width*2,rotate3d: '0, 100, 0, -90deg'},0); setTimeout(function() { ss.transition({left:0,perspective: opt.width*2,rotate3d: '0, 0, 0, 0deg'},masterspeed*2,function() { if (j==opt.slots-1) { removeSlots(container,opt); nextsh.find('.defaultimg').css({'opacity':1}); if (nextli.index()!=actli.index()) actsh.find('.defaultimg').css({'opacity':0}); opt.act=opt.next; moveSelectedThumb(container); } }); },j*100); }); actsh.find('.slotslide').each(function(j) { var ss=$(this); ss.transition({ left:0,perspective: opt.width*2,rotate3d: '0, 0, 0, 0deg'},0); actsh.find('.defaultimg').css({'opacity':0}); setTimeout(function() { if (direction==1) ss.transition({top:0,left:(opt.width/2),perspective: opt.width,rotate3d: '0, 1000, 0, -90deg'},masterspeed*1.5,function() {}); else ss.transition({top:0,left:(0-opt.width/2),perspective: opt.width,rotate3d: '0, 1000, 0, +90deg'},masterspeed*1.5,function() {}); },j*100); }); } var data={}; data.slideIndex=opt.next+1; container.trigger('revolution.slide.onchange',data); container.trigger('revolution.slide.onvideostop'); } function onYouTubePlayerAPIReady() { } ////////////////////////////////////////// // CHANG THE YOUTUBE PLAYER STATE HERE // //////////////////////////////////////// function onPlayerStateChange(event) { if (event.data == YT.PlayerState.PLAYING) { var bt = $('body').find('.tp-bannertimer'); var opt = bt.data('opt'); bt.stop(); opt.videoplaying=true; opt.videostartednow=1; } else { var bt = $('body').find('.tp-bannertimer'); var opt = bt.data('opt'); if (opt.conthover==0) bt.animate({'width':"100%"},{duration:((opt.delay-opt.cd)-100),queue:false, easing:"linear"}); opt.videoplaying=false; opt.videostoppednow=1; } } /////////////////////////////// // YOUTUBE VIDEO AUTOPLAY // /////////////////////////////// function onPlayerReady(event) { event.target.playVideo(); } //////////////////////// // VIMEO ADD EVENT ///// //////////////////////// function addEvent(element, eventName, callback) { if (element.addEventListener) { element.addEventListener(eventName, callback, false); } else { element.attachEvent(eventName, callback, false); } } ////////////////////////////////////////// // CHANG THE YOUTUBE PLAYER STATE HERE // //////////////////////////////////////// function vimeoready(player_id) { var froogaloop = $f(player_id); //$('#debug').html($('#debug').html()+"
Frooga Func"+Math.round(Math.random()*100)); froogaloop.addEvent('ready', function(data) { //$('#debug').html($('#debug').html()+"
Ready"+Math.round(Math.random()*100)); froogaloop.addEvent('play', function(data) { //$('#debug').html($('#debug').html()+"
Play"+Math.round(Math.random()*100)); var bt = $('body').find('.tp-bannertimer'); var opt = bt.data('opt'); bt.stop(); opt.videoplaying=true; }); froogaloop.addEvent('finish', function(data) { var bt = $('body').find('.tp-bannertimer'); var opt = bt.data('opt'); if (opt.conthover==0) bt.animate({'width':"100%"},{duration:((opt.delay-opt.cd)-100),queue:false, easing:"linear"}); opt.videoplaying=false; opt.videostartednow=1; }); froogaloop.addEvent('pause', function(data) { var bt = $('body').find('.tp-bannertimer'); var opt = bt.data('opt'); if (opt.conthover==0) bt.animate({'width':"100%"},{duration:((opt.delay-opt.cd)-100),queue:false, easing:"linear"}); opt.videoplaying=false; opt.videostoppednow=1; }); }); } function vimeoready_auto(player_id) { var froogaloop = $f(player_id); froogaloop.addEvent('ready', function(data) { froogaloop.api('play'); }); froogaloop.addEvent('play', function(data) { var bt = $('body').find('.tp-bannertimer'); var opt = bt.data('opt'); bt.stop(); opt.videoplaying=true; }); froogaloop.addEvent('finish', function(data) { var bt = $('body').find('.tp-bannertimer'); var opt = bt.data('opt'); if (opt.conthover==0) bt.animate({'width':"100%"},{duration:((opt.delay-opt.cd)-100),queue:false, easing:"linear"}); opt.videoplaying=false; opt.videostartednow=1; }); froogaloop.addEvent('pause', function(data) { var bt = $('body').find('.tp-bannertimer'); var opt = bt.data('opt'); if (opt.conthover==0) bt.animate({'width':"100%"},{duration:((opt.delay-opt.cd)-100),queue:false, easing:"linear"}); opt.videoplaying=false; opt.videostoppednow=1; }); } //////////////////////// // SHOW THE CAPTION // /////////////////////// function animateTheCaptions(nextli, opt,actli) { //if ($("body").find('#debug').length==0) // $("body").append('
'); nextli.find('.tp-caption').each(function(i) { offsetx = opt.width/2 - opt.startwidth/2; if (opt.bh>1) { opt.bw=1; opt.bh=1; } if (opt.bw>1) { opt.bw=1; opt.bh=1; } var xbw = opt.bw; var xbh = opt.bh; var nextcaption=nextli.find('.tp-caption:eq('+i+')'); var handlecaption=0; // HIDE CAPTION IF RESOLUTION IS TOO LOW if (opt.width0) { nextcaption.find('iframe').each(function() { var ifr=$(this); if (ifr.attr('src').toLowerCase().indexOf('youtube')>=0) { if (!ifr.hasClass("HasListener")) { try { ifr.attr('id',frameID); var player; if (nextcaption.data('autoplay')==true) player = new YT.Player(frameID, { events: { "onStateChange": onPlayerStateChange, 'onReady': onPlayerReady, } }); else player = new YT.Player(frameID, { events: { "onStateChange": onPlayerStateChange, } }); ifr.addClass("HasListener"); nextcaption.data('player',player); } catch(e) {} } } else { if (ifr.attr('src').toLowerCase().indexOf('vimeo')>=0) { if (!ifr.hasClass("HasListener")) { ifr.addClass("HasListener"); ifr.attr('id',frameID); var isrc = ifr.attr('src'); var queryParameters = {}, queryString = isrc, re = /([^&=]+)=([^&]*)/g, m; // Creates a map with the query string parameters while (m = re.exec(queryString)) { queryParameters[decodeURIComponent(m[1])] = decodeURIComponent(m[2]); } if (queryParameters['player_id']!=undefined) { isrc = isrc.replace(queryParameters['player_id'],frameID); } else { isrc=isrc+"&player_id="+frameID; } try{ isrc = isrc.replace('api=0','api=1'); } catch(e) {} isrc=isrc+"&api=1"; ifr.attr('src',isrc); var player = nextcaption.find('iframe')[0]; if (nextcaption.data('autoplay')==true) $f(player).addEvent('ready', vimeoready_auto); else $f(player).addEvent('ready', vimeoready); } } } }); } if (nextcaption.hasClass("randomrotate") && (opt.ie || opt.ie9)) nextcaption.removeClass("randomrotate").addClass("sfb"); nextcaption.removeClass('noFilterClass'); var imw =0; var imh = 0; if (nextcaption.find('img').length>0) { var im = nextcaption.find('img'); if (im.data('ww') == undefined) im.data('ww',im.width()); if (im.data('hh') == undefined) im.data('hh',im.height()); var ww = im.data('ww'); var hh = im.data('hh'); im.width(ww*opt.bw); im.height(hh*opt.bh); imw = im.width(); imh = im.height(); } else { if (nextcaption.find('iframe').length>0) { var im = nextcaption.find('iframe'); if (nextcaption.data('ww') == undefined) { nextcaption.data('ww',im.width()); } if (nextcaption.data('hh') == undefined) nextcaption.data('hh',im.height()); var ww = nextcaption.data('ww'); var hh = nextcaption.data('hh'); var nc =nextcaption; if (nc.data('fsize') == undefined) nc.data('fsize',parseInt(nc.css('font-size'),0) || 0); if (nc.data('pt') == undefined) nc.data('pt',parseInt(nc.css('paddingTop'),0) || 0); if (nc.data('pb') == undefined) nc.data('pb',parseInt(nc.css('paddingBottom'),0) || 0); if (nc.data('pl') == undefined) nc.data('pl',parseInt(nc.css('paddingLeft'),0) || 0); if (nc.data('pr') == undefined) nc.data('pr',parseInt(nc.css('paddingRight'),0) || 0); if (nc.data('mt') == undefined) nc.data('mt',parseInt(nc.css('marginTop'),0) || 0); if (nc.data('mb') == undefined) nc.data('mb',parseInt(nc.css('marginBottom'),0) || 0); if (nc.data('ml') == undefined) nc.data('ml',parseInt(nc.css('marginLeft'),0) || 0); if (nc.data('mr') == undefined) nc.data('mr',parseInt(nc.css('marginRight'),0) || 0); if (nc.data('bt') == undefined) nc.data('bt',parseInt(nc.css('borderTop'),0) || 0); if (nc.data('bb') == undefined) nc.data('bb',parseInt(nc.css('borderBottom'),0) || 0); if (nc.data('bl') == undefined) nc.data('bl',parseInt(nc.css('borderLeft'),0) || 0); if (nc.data('br') == undefined) nc.data('br',parseInt(nc.css('borderRight'),0) || 0); if (nc.data('lh') == undefined) nc.data('lh',parseInt(nc.css('lineHeight'),0) || 0); var fvwidth=opt.width; var fvheight=opt.height; if (fvwidth>opt.startwidth) fvwidth=opt.startwidth; if (fvheight>opt.startheight) fvheight=opt.startheight; if (!nextcaption.hasClass('fullscreenvideo')) nextcaption.css({ 'font-size': (nc.data('fsize') * opt.bw)+"px", 'padding-top': (nc.data('pt') * opt.bh) + "px", 'padding-bottom': (nc.data('pb') * opt.bh) + "px", 'padding-left': (nc.data('pl') * opt.bw) + "px", 'padding-right': (nc.data('pr') * opt.bw) + "px", 'margin-top': (nc.data('mt') * opt.bh) + "px", 'margin-bottom': (nc.data('mb') * opt.bh) + "px", 'margin-left': (nc.data('ml') * opt.bw) + "px", 'margin-right': (nc.data('mr') * opt.bw) + "px", 'border-top': (nc.data('bt') * opt.bh) + "px", 'border-bottom': (nc.data('bb') * opt.bh) + "px", 'border-left': (nc.data('bl') * opt.bw) + "px", 'border-right': (nc.data('br') * opt.bw) + "px", 'line-height': (nc.data('lh') * opt.bh) + "px", 'height':(hh*opt.bh)+'px', 'white-space':"nowrap" }); else nextcaption.css({ 'width':opt.startwidth*opt.bw, 'height':opt.startheight*opt.bh }); im.width(ww*opt.bw); im.height(hh*opt.bh); imw = im.width(); imh = im.height(); } else { var nc =nextcaption; if (nc.data('fsize') == undefined) nc.data('fsize',parseInt(nc.css('font-size'),0) || 0); if (nc.data('pt') == undefined) nc.data('pt',parseInt(nc.css('paddingTop'),0) || 0); if (nc.data('pb') == undefined) nc.data('pb',parseInt(nc.css('paddingBottom'),0) || 0); if (nc.data('pl') == undefined) nc.data('pl',parseInt(nc.css('paddingLeft'),0) || 0); if (nc.data('pr') == undefined) nc.data('pr',parseInt(nc.css('paddingRight'),0) || 0); if (nc.data('mt') == undefined) nc.data('mt',parseInt(nc.css('marginTop'),0) || 0); if (nc.data('mb') == undefined) nc.data('mb',parseInt(nc.css('marginBottom'),0) || 0); if (nc.data('ml') == undefined) nc.data('ml',parseInt(nc.css('marginLeft'),0) || 0); if (nc.data('mr') == undefined) nc.data('mr',parseInt(nc.css('marginRight'),0) || 0); if (nc.data('bt') == undefined) nc.data('bt',parseInt(nc.css('borderTop'),0) || 0); if (nc.data('bb') == undefined) nc.data('bb',parseInt(nc.css('borderBottom'),0) || 0); if (nc.data('bl') == undefined) nc.data('bl',parseInt(nc.css('borderLeft'),0) || 0); if (nc.data('br') == undefined) nc.data('br',parseInt(nc.css('borderRight'),0) || 0); if (nc.data('lh') == undefined) nc.data('lh',parseInt(nc.css('lineHeight'),0) || 0); nextcaption.css({ 'font-size': (nc.data('fsize') * opt.bw)+"px", 'padding-top': (nc.data('pt') * opt.bh) + "px", 'padding-bottom': (nc.data('pb') * opt.bh) + "px", 'padding-left': (nc.data('pl') * opt.bw) + "px", 'padding-right': (nc.data('pr') * opt.bw) + "px", 'margin-top': (nc.data('mt') * opt.bh) + "px", 'margin-bottom': (nc.data('mb') * opt.bh) + "px", 'margin-left': (nc.data('ml') * opt.bw) + "px", 'margin-right': (nc.data('mr') * opt.bw) + "px", 'border-top': (nc.data('bt') * opt.bh) + "px", 'border-bottom': (nc.data('bb') * opt.bh) + "px", 'border-left': (nc.data('bl') * opt.bw) + "px", 'border-right': (nc.data('br') * opt.bw) + "px", 'line-height': (nc.data('lh') * opt.bh) + "px", 'white-space':"nowrap" }); imh=nextcaption.outerHeight(true); imw=nextcaption.outerWidth(true); } } if (nextcaption.hasClass('fade')) { nextcaption.css({'opacity':0,'left':(xbw*nextcaption.data('x')+offsetx)+'px','top':(opt.bh*nextcaption.data('y'))+"px"}); } if (nextcaption.hasClass("randomrotate")) { nextcaption.css({'left':(xbw*nextcaption.data('x')+offsetx)+'px','top':((xbh*nextcaption.data('y'))+offsety)+"px" }); var sc=Math.random()*2+1; var ro=Math.round(Math.random()*200-100); var xx=Math.round(Math.random()*200-100); var yy=Math.round(Math.random()*200-100); nextcaption.data('repx',xx); nextcaption.data('repy',yy); nextcaption.data('repo',nextcaption.css('opacity')); nextcaption.data('rotate',ro); nextcaption.data('scale',sc); nextcaption.transition({opacity:0, scale:sc, rotate:ro, x:xx, y: yy,duration: '0ms'}); } else { if (opt.ie || opt.ie9) {} else nextcaption.transition({ scale:1, rotate:0}); } if (nextcaption.hasClass('lfr')) { nextcaption.css({'opacity':1,'left':(15+opt.width)+'px','top':(opt.bh*nextcaption.data('y'))+"px"}); } if (nextcaption.hasClass('lfl')) { nextcaption.css({'opacity':1,'left':(-15-imw)+'px','top':(opt.bh*nextcaption.data('y'))+"px"}); } if (nextcaption.hasClass('sfl')) { nextcaption.css({'opacity':0,'left':((xbw*nextcaption.data('x'))-50+offsetx)+'px','top':(opt.bh*nextcaption.data('y'))+"px"}); } if (nextcaption.hasClass('sfr')) { nextcaption.css({'opacity':0,'left':((xbw*nextcaption.data('x'))+50+offsetx)+'px','top':(opt.bh*nextcaption.data('y'))+"px"}); } if (nextcaption.hasClass('lft')) { nextcaption.css({'opacity':1,'left':(xbw*nextcaption.data('x')+offsetx)+'px','top':(-25 - imh)+"px"}); } if (nextcaption.hasClass('lfb')) { nextcaption.css({'opacity':1,'left':(xbw*nextcaption.data('x')+offsetx)+'px','top':(25+opt.height)+"px"}); } if (nextcaption.hasClass('sft')) { nextcaption.css({'opacity':0,'left':(xbw*nextcaption.data('x')+offsetx)+'px','top':((opt.bh*nextcaption.data('y'))-50)+"px"}); } if (nextcaption.hasClass('sfb')) { nextcaption.css({'opacity':0,'left':(xbw*nextcaption.data('x')+offsetx)+'px','top':((opt.bh*nextcaption.data('y'))+50)+"px"}); } nextcaption.data('timer',setTimeout(function() { nextcaption.css({'visibility':'visible'}); if (nextcaption.hasClass('fade')) { nextcaption.data('repo',nextcaption.css('opacity')); nextcaption.animate({'opacity':1},{duration:nextcaption.data('speed')}); if (opt.ie) nextcaption.addClass('noFilterClass'); } if (nextcaption.hasClass("randomrotate")) { nextcaption.transition({opacity:1, scale:1, 'left':(xbw*nextcaption.data('x')+offsetx)+'px','top':(xbh*(nextcaption.data('y'))+offsety)+"px", rotate:0, x:0, y:0,duration: nextcaption.data('speed')}); if (opt.ie) nextcaption.addClass('noFilterClass'); } if (nextcaption.hasClass('lfr') || nextcaption.hasClass('lfl') || nextcaption.hasClass('sfr') || nextcaption.hasClass('sfl') || nextcaption.hasClass('lft') || nextcaption.hasClass('lfb') || nextcaption.hasClass('sft') || nextcaption.hasClass('sfb') ) { var easetype=nextcaption.data('easing'); if (easetype==undefined) easetype="linear"; nextcaption.data('repx',nextcaption.position().left); nextcaption.data('repy',nextcaption.position().top); nextcaption.data('repo',nextcaption.css('opacity')); nextcaption.animate({'opacity':1,'left':(xbw*nextcaption.data('x')+offsetx)+'px','top':opt.bh*(nextcaption.data('y'))+"px"},{duration:nextcaption.data('speed'), easing:easetype}); if (opt.ie) nextcaption.addClass('noFilterClass'); } },nextcaption.data('start'))); // IF THERE IS ANY EXIT ANIM DEFINED if (nextcaption.data('end')!=undefined) nextcaption.data('timer-end',setTimeout(function() { if ((opt.ie || opt.ie9) && (nextcaption.hasClass("randomrotate") || nextcaption.hasClass("randomrotateout"))) { nextcaption.removeClass("randomrotate").removeClass("randomrotateout").addClass('fadeout'); } endMoveCaption(nextcaption,opt); },nextcaption.data('end'))); } }) } ////////////////////////// // REMOVE THE CAPTIONS // ///////////////////////// function removeTheCaptions(actli,opt) { actli.find('.tp-caption').each(function(i) { var nextcaption=actli.find('.tp-caption:eq('+i+')'); nextcaption.stop(true,true); clearTimeout(nextcaption.data('timer')); clearTimeout(nextcaption.data('timer-end')); var easetype=nextcaption.data('easing'); easetype="easeInOutSine"; var ll = nextcaption.data('repx'); var tt = nextcaption.data('repy'); var oo = nextcaption.data('repo'); var rot = nextcaption.data('rotate'); var sca = nextcaption.data('scale'); if (nextcaption.find('iframe').length>0) { // VIMEO VIDEO PAUSE try { var ifr = nextcaption.find('iframe'); var id = ifr.attr('id'); var froogaloop = $f(id); froogaloop.api("pause"); } catch(e) {} //YOU TUBE PAUSE try { var player=nextcaption.data('player'); player.stopVideo(); } catch(e) {} } try { /*if (rot!=undefined || sca!=undefined) { if (rot==undefined) rot=0; if (sca==undefined) sca=1; nextcaption.transition({'rotate':rot, 'scale':sca, 'opacity':0,'left':ll+'px','top':tt+"px"},(nextcaption.data('speed')+10), function() { nextcaption.removeClass('noFilterClass');nextcaption.css({'visibility':'hidden'})}); } else { nextcaption.animate({'opacity':0,'left':ll+'px','top':tt+"px"},{duration:(nextcaption.data('speed')+10), easing:easetype, complete:function() { nextcaption.removeClass('noFilterClass');nextcaption.css({'visibility':'hidden'})}}); }*/ endMoveCaption(nextcaption,opt); } catch(e) {} }); } ////////////////////////// // MOVE OUT THE CAPTIONS // ///////////////////////// function endMoveCaption(nextcaption,opt) { var endspeed=nextcaption.data('endspeed'); if (endspeed==undefined) endspeed=nextcaption.data('speed'); var xx=nextcaption.data('repx'); var yy=nextcaption.data('repy'); var oo=nextcaption.data('repo'); if (nextcaption.hasClass('ltr') || nextcaption.hasClass('ltl') || nextcaption.hasClass('str') || nextcaption.hasClass('stl') || nextcaption.hasClass('ltt') || nextcaption.hasClass('ltb') || nextcaption.hasClass('stt') || nextcaption.hasClass('stb') ) { xx=nextcaption.position().left; yy=nextcaption.position().top; if (nextcaption.hasClass('ltr')) xx=opt.width+20; else if (nextcaption.hasClass('ltl')) xx=0-nextcaption.width()-20; else if (nextcaption.hasClass('ltt')) yy=0-nextcaption.height()-20; else if (nextcaption.hasClass('ltb')) yy=opt.height+20; else if (nextcaption.hasClass('str')) { xx=xx+50;oo=0; } else if (nextcaption.hasClass('stl')) { xx=xx-50;oo=0; } else if (nextcaption.hasClass('stt')) { yy=yy-50;oo=0; } else if (nextcaption.hasClass('stb')) { yy=yy+50;oo=0; } var easetype=nextcaption.data('endeasing'); if (easetype==undefined) easetype="linear"; nextcaption.animate({'opacity':oo,'left':xx+'px','top':yy+"px"},{duration:nextcaption.data('endspeed'), easing:easetype}); if (opt.ie) nextcaption.addClass('noFilterClass'); } else if ( nextcaption.hasClass("randomrotateout")) { nextcaption.transition({opacity:0, scale:Math.random()*2+0.3, 'left':Math.random()*opt.width+'px','top':Math.random()*opt.height+"px", rotate:Math.random()*40, duration: endspeed}); if (opt.ie) nextcaption.addClass('noFilterClass'); } else if (nextcaption.hasClass('fadeout')) { nextcaption.animate({'opacity':0},{duration:endspeed}); if (opt.ie) nextcaption.addClass('noFilterClass'); } else if (nextcaption.hasClass('lfr') || nextcaption.hasClass('lfl') || nextcaption.hasClass('sfr') || nextcaption.hasClass('sfl') || nextcaption.hasClass('lft') || nextcaption.hasClass('lfb') || nextcaption.hasClass('sft') || nextcaption.hasClass('sfb') ) { if (nextcaption.hasClass('lfr')) xx=opt.width+20; else if (nextcaption.hasClass('lfl')) xx=0-nextcaption.width()-20; else if (nextcaption.hasClass('lft')) yy=0-nextcaption.height()-20; else if (nextcaption.hasClass('lfb')) yy=opt.height+20; var easetype=nextcaption.data('endeasing'); if (easetype==undefined) easetype="linear"; nextcaption.animate({'opacity':oo,'left':xx+'px','top':yy+"px"},{duration:nextcaption.data('endspeed'), easing:easetype}); if (opt.ie) nextcaption.addClass('noFilterClass'); } else if (nextcaption.hasClass('fade')) { nextcaption.animate({'opacity':0},{duration:endspeed}); if (opt.ie) nextcaption.addClass('noFilterClass'); } else if (nextcaption.hasClass("randomrotate")) { nextcaption.transition({opacity:0, scale:Math.random()*2+0.3, 'left':Math.random()*opt.width+'px','top':Math.random()*opt.height+"px", rotate:Math.random()*40, duration: endspeed}); if (opt.ie) nextcaption.addClass('noFilterClass'); } } /////////////////////////// // - COUNTDOWN - // ///////////////////////// function countDown(container,opt) { opt.cd=0; opt.loop=0; if (opt.stopAfterLoops!=undefined && opt.stopAfterLoops>-1) opt.looptogo=opt.stopAfterLoops; else opt.looptogo=9999999; if (opt.stopAtSlide!=undefined && opt.stopAtSlide>-1) opt.lastslidetoshow=opt.stopAtSlide; else opt.lastslidetoshow=999; if (opt.looptogo==0) opt.stopLoop="on"; if (opt.slideamount >1 && !(opt.stopAfterLoops==0 && opt.stopAtSlide==1) ) { var bt=container.find('.tp-bannertimer'); if (bt.length>0) { bt.css({'width':'0%'}); bt.animate({'width':"100%"},{duration:(opt.delay-100),queue:false, easing:"linear"}); } bt.data('opt',opt); opt.cdint=setInterval(function() { if (container.data('conthover-changed') == 1) { opt.conthover= container.data('conthover'); container.data('conthover-changed',0); } if (opt.conthover!=1 && opt.videoplaying!=true && opt.width>opt.hideSliderAtLimit) opt.cd=opt.cd+100; if (opt.fullWidth!="on") if (opt.width>opt.hideSliderAtLimit) container.parent().removeClass("tp-hide-revslider") else container.parent().addClass("tp-hide-revslider") // EVENT TRIGGERING IN CASE VIDEO HAS BEEN STARTED if (opt.videostartednow==1) { container.trigger('revolution.slide.onvideoplay'); opt.videostartednow=0; } // EVENT TRIGGERING IN CASE VIDEO HAS BEEN STOPPED if (opt.videostoppednow==1) { container.trigger('revolution.slide.onvideostop'); opt.videostoppednow=0; } if (opt.cd>=opt.delay) { opt.cd=0; // SWAP TO NEXT BANNER opt.act=opt.next; opt.next=opt.next+1; if (opt.next>container.find('>ul >li').length-1) { opt.next=0; opt.looptogo=opt.looptogo-1; if (opt.loop<=0) { opt.stopLoop="on"; } } // STOP TIMER IF NO LOOP NO MORE NEEDED. if (opt.stopLoop=="on" && opt.next==opt.lastslidetoshow-1) { clearInterval(opt.cdint); container.find('.tp-bannertimer').css({'visibility':'hidden'}); container.trigger('revolution.slide.onstop'); } // SWAP THE SLIDES swapSlide(container,opt); // Clear the Timer if (bt.length>0) { bt.css({'width':'0%'}); bt.animate({'width':"100%"},{duration:(opt.delay-100),queue:false, easing:"linear"}); } } },100); container.hover( function() { if (opt.onHoverStop=="on") { opt.conthover=1; bt.stop(); container.trigger('revolution.slide.onpause'); } }, function() { if (container.data('conthover')!=1) { container.trigger('revolution.slide.onresume'); opt.conthover=0; if (opt.onHoverStop=="on" && opt.videoplaying!=true) { bt.animate({'width':"100%"},{duration:((opt.delay-opt.cd)-100),queue:false, easing:"linear"}); } } }); } } })(jQuery);