$(function(){ if($(window).width()>1024){ $(".news_top .right li").hover(function(){ $(this).addClass("on").siblings().removeClass("on"); $(".news_top .left li").eq($(this).index()).show().siblings().hide(); }) }else{ newsSlider(); } }) function newsSlider(){ if($(".news_top .right li").length>1){ var brand3Swiper = new Swiper('.news_top .right .swiper-container', { slidesPerView: 3,//设置slider容器能够同时显示的slides数量(carousel模式) slidesPerGroup: 1,//在carousel mode下定义slides的数量多少为一组。 spaceBetween: 10,//slide之间的距离(单位px)。 prevButton:'.news_top .right .swiper-button-prev', nextButton:'.news_top .right .swiper-button-next', breakpoints:{ //当宽度小于等于1024 767: { slidesPerView: 1, slidesPerGroup: 1 }, } }) } if($(window).width()>767){ if($(".news_top .right li").length>3){ $(".news_btn").show(); }else{ $(".news_btn").hide(); } }else{ if($(".news_top .right li").length>1){ $(".news_btn").show(); }else{ $(".news_btn").hide(); } } }