$(function(){ var myFullpage = new fullpage('#main', { licenseKey:'CA1496DB-7097400A-AEE12636-FD382729', menu: '#menu', anchors: ['mv', 'mv2', 'page01', 'page02', 'page03', 'page04', 'contact'], navigation: true, navigationPosition: 'right', scrollOverflow: true, scrollOverflowReset: true, afterRender: function(){ swiperstart(); $('.section0').addClass('on'); }, onLeave: function(origin, destination, direction){ if(destination.index > 0){ $('.section'+destination.index).addClass('on'); } //resetscroll(); }, afterLoad: function(origin, destination, direction){ } }); function resetscroll() { $('.fp-scroller,.iScrollVerticalScrollbar.iScrollLoneScrollbar').css('transform','translate(0px,0px)'); } function swiperstart(){ var swiper = new Swiper('.top-container', { slidesPerView: 1, spaceBetween: 0, loop: true, speed: 1000, centeredSlides:true, pagination: { el: '.swiper-pagination', clickable: true, }, autoplay: { delay: 8000, disableOnInteraction: false, }, //navigation: { //nextEl: '.swiper-button-next', //prevEl: '.swiper-button-prev', //}, // breakpoints: { // 1367: { // slidesPerView: 3, // }, //} }); var swiper = new Swiper('.slide-container', {     slidesPerView: 2, spaceBetween: 0, loop: true, speed: 1000, //pagination: { //el: '.swiper-pagination', //clickable: true, // }, autoplay: { delay: 4000, disableOnInteraction: false, }, //navigation: { //nextEl: '.swiper-button-next', //prevEl: '.swiper-button-prev', //},     breakpoints: { 640: { slidesPerView: 'auto', centeredSlides:true, }, } }); } }); $(window).on('load',function(){ }); $(window).on('resize',function () { }); $(window).on('orientationchange', function(){ }); $(window).on('scroll',function () { });