8889841c(function($) { "use strict"; //Home text fade on scroll $(window).scroll(function () { var $Fade = $('.hero-wrap'); //Get scroll position of window var windowScroll = $(this).scrollTop(); //Slow scroll and fade it out $Fade.css({ 'margin-top': -(windowScroll / 0) + "px", 'opacity': 1 - (windowScroll / 600) }); }); /* One-page Navigation*/ $(window).load(function(){"use strict"; /* Page Scroll to id fn call */ $("ul.sky-mega-menu li a,a[href='#top'],a[data-gal='m_PageScroll2id']").mPageScroll2id({ highlightSelector:"ul.sky-mega-menu li a", offset: 66, scrollSpeed:800, scrollEasing: "easeInOutCubic" }); /* demo functions */ $("a[rel='next']").click(function(e){ e.preventDefault(); var to=$(this).parent().parent("section").next().attr("id"); $.mPageScroll2id("scrollTo",to); }); }); $(document).ready(function() {"use strict"; //Preloader $(".animsition").animsition({ inClass : 'fade-in', outClass : 'fade-out', inDuration : 500, outDuration : 500, linkElement : '.animsition-link', // e.g. linkElement : 'a:not([target="_blank"]):not([href^=#])' loading : true, loadingParentElement : 'body', //animsition wrapper element loadingClass : 'animsition-loading', unSupportCss : [ 'animation-duration', '-webkit-animation-duration', '-o-animation-duration' ], //"unSupportCss" option allows you to disable the "animsition" in case the css property in the array is not supported by your browser. //The default setting is to disable the "animsition" in a browser that does not support "animation-duration". overlay : false, overlayClass : 'animsition-overlay-slide', overlayParentElement : 'body' }); /* App Carousel */ $("#owl-app").owlCarousel({ items : 5, itemsDesktop : [1000,4], itemsDesktopSmall : [900,3], itemsTablet: [600,2], itemsMobile : false, pagination : true, slideSpeed : 300 }); /* Logos Carousel */ $("#owl-logos").owlCarousel({ items : 6, itemsDesktop : [1000,4], itemsDesktopSmall : [900,3], itemsTablet: [600,2], itemsMobile : false, pagination : false, autoPlay : 3000, slideSpeed : 300 }); /* Quote Carousel */ $("#owl-quote").owlCarousel({ pagination : true, transitionStyle : "fade", slideSpeed : 500, paginationSpeed : 500, singleItem:true, autoPlay: 5000 }); //Parallax $('.parallax-9').parallax("50%", 0.2); //Fancybox $(".fancybox").fancybox({ maxWidth : 600, maxHeight : 900, fitToView : false, width : '80%', height : '80%', autoSize : false, closeClick : false, openEffect : 'elastic', closeEffect : 'elastic' }); //Fancybox $(".fancybox").fancybox({ maxWidth : 1700, maxHeight : 1400, fitToView : false, width : '80%', height : '80%', autoSize : false, closeClick : false, openEffect : 'elastic', closeEffect : 'none' }); //Scroll back to top var offset = 450; var duration = 500; jQuery(window).scroll(function() { if (jQuery(this).scrollTop() > offset) { jQuery('.scroll-to-top').fadeIn(duration); } else { jQuery('.scroll-to-top').fadeOut(duration); } }); jQuery('.scroll-to-top').click(function(event) { event.preventDefault(); jQuery('html, body').animate({scrollTop: 0}, duration); return false; }) }); })(jQuery);