(function($) { 'use strict'; function PagePreloader() { jQuery('body').removeClass('no-js'); } jQuery(window).load(function($) { PagePreloader(); }); } )(window.jQuery); /* -------------------------------------------- JS Start -------------------------------------------- */ jQuery(document).ready(function($) { /* call foundation */ $(document).foundation(); // carousel post $('.carousel-layout4').slick({ cssEase: 'linear', pauseOnHover: false, prevArrow: '
', nextArrow: '', responsive: [{ breakpoint: 768, settings: { adaptiveHeight: true, slidesToShow: 1, centerMode: false, centerPadding: '0px', } }, ] }); // scrollup jQuery(window).bind("scroll", function() { if (jQuery(this).scrollTop() > 800) { jQuery(".scroll_to_top").fadeIn('slow'); } else { jQuery(".scroll_to_top").fadeOut('fast'); } }); jQuery(".scroll_to_top").click(function() { jQuery("html, body").animate({ scrollTop: 0 }, "slow"); return false; }); }); /* -------------------------------------------- JS END -------------------------------------------- */