$(function() { var indexswiperp = new swiper('.index_swiper .index_swiperp', { autoplay: true, //可选选项,自动滑动 loop: true, speed: 2000, effect:"fade", pagination: { el: '.swiper-pagination', clickable: true }, }); var indexswiperm = new swiper('.index_swiper .index_swiperm', { autoplay: true, //可选选项,自动滑动 loop: true, speed: 1000, pagination: { el: '.swiper-pagination', clickable: true }, }); var topnews = new swiper('.top_div02 .swiper-container', { autoplay: { delay: 0, stoponlastslide: false, disableoninteraction: true, }, //可选选项,自动滑动 loop: true, slidesperview: 3, centeredslides: false, centeredslidesbounds: true, spacebetween: 20, speed: 5000, observer: true, //修改swiper自己或子元素时,自动初始化swiper observeparents: true, //修改swiper的父元素时,自动初始化swiper }); var myswiper = new swiper(".product-wrapper .swiper-container", { slidesperview: 4, //默认是显示4个 initialslide: 999, //默认从第几个显示,999是为了让右边没有 spacebetween: 0, //间距 speed: 1000, //速度 prevbutton: ".swiper-button-prev", //左右按钮 nextbutton: ".swiper-button-next", observer: true, //修改swiper自己或子元素时,自动初始化swiper observeparents: true, //修改swiper的父元素时,自动初始化swiper }) $(".project").hover3d({ selector: ".project__card", shine: true, }); var newsswiper = new swiper('.news_img02 .swiper-container', { autoplay: true, //可选选项,自动滑动 loop: true, speed: 2100, pagination: { el: '.swiper-pagination', clickable: true }, }); $('.ul_head01').on('click', 'span', function() { $('.ul_head01 span').removeclass('ul_active'); $(this).addclass('ul_active'); $('.news_li').css('display', 'none'); $('.news_li').eq($(this).index()).css('display', 'block'); }); $('.c_videobox').on('click', '.video_btn', function() { // console.log($(this).attr('data-index')); $('.video_li').eq($(this).attr('data-index')).css('display', 'block') document.queryselector('.video_mark').style.display = 'flex'; var video = document.getelementbyid('video_sp_' + $(this).attr('data-index')); video.play(); }); $('.video_close').click(function() { document.queryselector('.video_mark').style.display = 'none'; $(this).prev('video').trigger('pause'); $('.video_li').css('display', 'none'); }); $(".pdiv_right .project").hover3d({ selector: ".project__card", shine: true, }); //调整轮播 var windwidth = $(window).width(); if (windwidth < 767) { topnews.params.slidesperview = 1; topnews.params.speed = 5000; myswiper.params.slidesperview = 2; } // 监听页面尺寸改变 $(window).bind('resize', function() { var changewidth = $(window).width(); // console.log(changewidth); //首页产品,销售网点,配套服务轮播配置 if (changewidth < 767) { topnews.params.slidesperview = 1; topnews.params.speed = 5000; myswiper.params.slidesperview = 1; } else { topnews.params.slidesperview = 1; topnews.params.speed = 5000; } }); // 监听页面滚动 $(window).scroll(function() { //let domtop = $(document).scrolltop(); // 获取各大元素块的top偏移量 // let news_top = $('.news_top').offset().top, //头条 // news_top = $('.index_news').offset().top, //新闻 // news_top = $('.index_cultrue').offset().top, //文化 // news_top = $('.river_box').offset().top, // news_top = $('.index_prd').offset().top, // news_top = $('.index_other').offset().top; }) })