/* jQuery Pre loader -----------------------------------------------*/ $(window).load(function(){ $('.preloader').fadeOut(1000); // set duration in brackets }); /* HTML document is loaded. DOM is ready. -------------------------------------------*/ $(document).ready(function() { /* template navigation -----------------------------------------------*/ $('.main-navigation').onePageNav({ scrollThreshold: 0.2, // Adjust if Navigation highlights too early or too late scrollOffset: 75, //Height of Navigation Bar filter: ':not(.external)', changeHash: true }); /* Navigation visible on Scroll */ mainNav(); $(window).scroll(function () { mainNav(); }); function mainNav() { var top = (document.documentElement && document.documentElement.scrollTop) || document.body.scrollTop; if (top > 40) $('.sticky-navigation').stop().animate({ "opacity": '1', "top": '0' }); else $('.sticky-navigation').stop().animate({ "opacity": '0', "top": '-75' }); } /* Hide mobile menu after clicking on a link -----------------------------------------------*/ $('.navbar-collapse a').click(function(){ $(".navbar-collapse").collapse('hide'); }); /* smoothscroll ----------------------------------------------*/ $(function() { $('.navbar-default a, #home a, #overview a').bind('click', function(event) { var $anchor = $(this); $('html, body').stop().animate({ scrollTop: $($anchor.attr('href')).offset().top - 49 }, 1000); event.preventDefault(); }); }); /* Parallax section -----------------------------------------------*/ function initParallax() { $('#home').parallax("100%", 0.1); $('#overview').parallax("100%", 0.3); $('#trainer').parallax("100%", 0.2); $('#newsletter').parallax("100%", 0.3); $('#blog').parallax("100%", 0.1); $('#price').parallax("100%", 0.2); $('#testimonial').parallax("100%", 0.2); } initParallax(); /* home slider section -----------------------------------------------*/ $(function(){ jQuery(document).ready(function() { $('#home').backstretch([ "http://centropolis.cl/img_empresa/462491/fondo_web/1544498069_40813710_690323927991929_2727344485393498112_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544498060_40784021_690333254657663_1694856457926737920_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544498047_40778394_690336071324048_3870513077048836096_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544498039_40766733_690324114658577_7924332940224364544_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544498028_40684936_690323804658608_5997340500745519104_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544498017_40683899_690334544657534_8206208195002105856_o.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544498008_40644052_690273231330332_8269805205978087424_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544497992_40628687_690314981326157_3406529911840571392_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544497983_40525480_689332811424374_7816643421325492224_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544497977_20031903_457747311249593_2534459691302735334_n.jpg","http://centropolis.cl/img_empresa/462491/fondo_web/1544497968_19030398_438771749813816_766690894503080429_n.jpg", ], {duration: 2000, fade: 750}); }); }) /* Owl Carousel -----------------------------------------------*/ $(document).ready(function() { $("#owl-testimonial").owlCarousel({ autoPlay: 6000, items : 1, itemsDesktop : [1199,1], itemsDesktopSmall : [979,1], itemsTablet: [768,1], itemsTabletSmall: false, itemsMobile : [479,1], }); }); /* wow -------------------------------*/ new WOW({ mobile: false }).init(); });