$(function() { // banner 轮播 var swiper = new Swiper('.swpBan', { slidesPerView: 1, spaceBetween: 0, centeredSlides: false, loop: true, speed: 800, autoplay: { delay: 5000, disableOnInteraction: false, }, navigation: { nextEl: '.banNext', prevEl: '.banPrev', }, on: { slideChangeTransitionStart: function() { var _thisIdx = this.realIndex + 1; $(".cutAct").text("0" + _thisIdx); }, slideChange: function() { if (!$(".swpBan").hasClass("act")) { $(".swpBan").addClass("act"); } }, init: function() { var total = this.slides.length - 2; $('.total').text('0' + total); this.emit('transitionEnd'); }, }, paginationClickable: true, observer: true, observeParents: true, }); // 合作伙伴 var hzhb_siper = new Swiper('.hzhb_siper', { slidesPerView: 1, spaceBetween: 30, // loop: true, pagination: { el: '.zh_span', clickable: true, }, navigation: { nextEl: '.index_pev', prevEl: '.index_pr', }, }); var hzhb_siper1 = new Swiper('.hzhb_siper1', { slidesPerView: 1, spaceBetween: 30, // loop: true, pagination: { el: '.zh_span1', clickable: true, }, navigation: { nextEl: '.index_pev1', prevEl: '.index_pr1', }, }); // b1 - about var aboHonoSwp = new Swiper('.aboHonoSwp', { slidesPerView: 1, spaceBetween: 10, centeredSlides: true, loop: true, speed: 800, autoplay: { delay: 5000, disableOnInteraction: false, }, breakpoints: { 640: { slidesPerView: 3, spaceBetween: 10, }, }, navigation: { nextEl: '.aboHonoSwp-nt', prevEl: '.aboHonoSwp-pv', }, paginationClickable: true, observer: true, observeParents: true, }); var newBoxswp = new Swiper('.newBox-swp', { slidesPerView: 1, spaceBetween: 10, centeredSlides: true, loop: true, speed: 800, autoplay: { delay: 5000, disableOnInteraction: false, }, pagination: { el: '.newBox-page', clickable: true, }, navigation: { nextEl: '.newBox-nt', }, paginationClickable: true, observer: true, observeParents: true, }); if ($(window).width()<680) { var aboNewSwp = new Swiper('.aboNewSwp', { slidesPerView: 1, spaceBetween: 10, centeredSlides: true, loop: true, speed: 800, autoplay: { delay: 5000, disableOnInteraction: false, }, pagination: { el: '.aboNewSwp-page', clickable: true, }, paginationClickable: true, observer: true, observeParents: true, }); } // 新增 var tanSwp = new Swiper('.tanSwp', { slidesPerView: 1, spaceBetween: 10, centeredSlides: false, loop: false, speed: 800, navigation: { nextEl: '.tanSwp-nt', prevEl: '.tanSwp-pv', }, observer: true, observeParents: true, }); $(".close-x").click(function(){ $(".tanBg").fadeOut(); $(".tanBox").fadeOut(); }) $(".aboHonoSwp .swiper-slide").click(function(){ var _this = $(this); var _thisIdx = _this.data("swiper-slide-index"); console.log(_thisIdx); $(".tanBg").fadeIn(); $(".tanBox").fadeIn(); tanSwp.slideTo(_thisIdx, 0); }) }) $(document).ready(function() { $(window).scroll(function() { currTop = $(window).scrollTop(); if (currTop < 160) { $('.header').removeClass('tophide'); } else { $('.header').addClass('tophide'); } }); if ($(window).scrollTop() > 0) { $('.header').addClass('tophide'); } })