$(function(){ scrolldown(); var swiper = new Swiper('.topslide', { effect: 'fade', loop:true, speed:1500, autoplay: { delay: 3000, }, }); var swiper = new Swiper('.featureslide', { loop: true, speed:700, //slidesPerView: 1.3, slidesPerView: 'auto', centeredSlides: true, autoplay: { delay: 5000, disableOnInteraction: false, }, pagination: { el: '.swiper-pagination', clickable: true, }, navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, breakpoints: { 1200: { slidesPerView: 1.3, }, }, breakpoints: { 1000: { slidesPerView: 1.2, }, }, breakpoints: { 640: { slidesPerView: 1.1, }, } }); }); $(window).on('load',function(){ }); $(window).on('resize',function () { scrolldown(); }); $(window).on('orientationchange', function(){ scrolldown(); }); $(window).on('scroll', function(){ scrolldown(); }); function scrolldown(){ scl = $('body').scrollTop(); if(scl==0){scl = $('html').scrollTop();} if(scl > 100){ if(!$('#head .headwrap').hasClass('onn')){ $('#head .headwrap').addClass('onn'); } }else{ if($('#head .headwrap').hasClass('onn')){ $('#head .headwrap').removeClass('onn'); } } }