// var homeSwiper = new Swiper('.homeSwiper', { // loop:true, // autoplay: { // delay: 4000, // disableOnInteraction: false, // }, // pagination: { // el: '.swiper-pagination', // clickable: true, // }, // }); // var homeNewsSwiper = new Swiper(".swiperNews", { // //- slidesPerView: 1, // loop:true, // spaceBetween: 40, // slidesPerView: "auto", // autoplay: { // delay: 4000, // disableOnInteraction: false, // }, // navigation: { // nextEl: ".swiper-next", // prevEl: ".swiper-prev", // }, // }); var swiper = new Swiper(".newsSwipers", { spaceBetween: 0, loop:true, autoplay: { delay: 4000, disableOnInteraction: false, }, pagination: { el: '.swiper-pagination', clickable: true, }, }); var swiper2 = new Swiper(".visionSwipers", { spaceBetween: 20, slidesPerView: 1, centeredSlides: true, loop:true, pagination: { el: '.swiper-pagination', clickable: true, }, // navigation: { // nextEl: ".swiper-next", // prevEl: ".swiper-prev", // }, breakpoints: { 640: { slidesPerView: 1, spaceBetween: 20, }, 768: { slidesPerView: 1, spaceBetween: 20, }, 1024: { slidesPerView: 2, spaceBetween: 40, }, }, }); $grid = $('.grid').isotope({ itemSelector: '.grid-item', percentPosition: true, itemSelector: '.grid-item', masonry: { // use outer width of grid-sizer for columnWidth columnWidth: '.grid-sizer', gutter: 30 } }); // setTimeout(function(){ // $grid.isotope({ filter: '.c32' }); // },1000); $(document).ready(function() { $(window).scroll(function() { if (40 < $(window).scrollTop()) { $("#site-header").addClass("fixheader"); // $("#logo").attr("src","img/logo_bot.png"); } else { $("#site-header").removeClass("fixheader"); // $("#logo").attr("src","img/logo.png"); } }); $('#overmenu .menu a').click(function(e) { e.preventDefault(); var url = $(this).attr('href'); $(this).addClass('clickme'); setTimeout(function(e) { location.href = url; }, 600); }); $('.nav-bg').hover(function(e) { $(this).stop().fadeIn(); }, function() { $(this).stop().fadeOut(); }); $(".menu-toggle").on('click', function() { $(this).toggleClass("on"); $("#overmenu").toggleClass("showMenu"); }); $("#overmenu li.parent>a").on("click", function(e) { "use strict"; e.preventDefault(); $(this).closest('li').toggleClass('open'); $(this).next('.sub-menu').slideToggle(); }); var btn = $('#toTop'); $(window).scroll(function() { if ($(window).scrollTop() > 300) { btn.css({opacity:1}); } else { btn.css({opacity:0}); } }); // btn.on('click', function(e) { // e.preventDefault(); // $('html, body').animate({ scrollTop: 0 }, '300'); // }); $('#toolbar .box .box-header').click(function(e){ $(this).closest('.box').toggleClass('open'); }); // 关于我们 $("#honorTab li").click(function(e){ cate = $(this).attr('data-tag') $grid.isotope({ filter: cate }); $(this).addClass('active').siblings().removeClass('active'); }); // 关于我们 $("#historyTab li").click(function(e){ cate = $(this).attr('data-id') $(this).addClass('active').siblings().removeClass('active'); $("#" + cate).addClass('active').siblings().removeClass('active'); }) });