new Swiper('#j-banner', { pagination: { el: '#j-banner .swiper-pagination', clickable: true }, autoplay: { delay: 5000, stopOnLastSlide: false, disableOnInteraction: false, } }); new Swiper('#j-banner2', { navigation: { nextEl: '#j-banner2 .btn-right', prevEl: '#j-banner2 .btn-left', }, autoplay: { delay: 5000, stopOnLastSlide: false, disableOnInteraction: false, } }); new Swiper('#j-banner3 .swiper-container', { navigation: { nextEl: '#j-banner3 .btn-right', prevEl: '#j-banner3 .btn-left', }, autoplay: { delay: 5000, stopOnLastSlide: false, disableOnInteraction: false, } }); // 鑿滃崟 $('#j-showMenu').on('click', function () { $(this).toggleClass('ico-close'); $('#j-menu').toggle(); }) $('#j-menu').on('click', '.item > a', function () { $('#j-menu .sub').hide(); $(this).next().toggle(); }).on('click', '.bg', function () { $('#j-showMenu').trigger('click') }) // 寮瑰嚭瑙嗛 // $('.m-video img').on('click', function () { // if ($('.m-popVideo').length) { // $('.m-popVideo').show(); // } else { // $('body').append('
\ //
\ // \ // \ //
\ //
') // } // }) // tab鍒囨崲 $('#j-tab').on('click', '.item', function () { var index = $(this).index(); $(this).addClass('on').siblings().removeClass('on'); $('#j-tabCont > div').eq(index).show().siblings().hide(); }) $('#j-tab2').on('click', '.item', function () { var index = $(this).attr('data-index'); $(this).addClass('on').siblings().removeClass('on'); $('#j-tabCont2 > div').eq(index).show().siblings().hide(); })