var myswiper = new swiper('.swiper-container', { autoplay: 5000, //可选选项,自动滑动 loop: true, //可选选项,开启循环 pagination: '.pagination', autoplaydisableoninteraction: false, //autoheight: true, //高度随内容变化 // calculateheight: true, // resizereinit: true, // paginationclickable: true, // onfirstinit:function(swiper) { // if($(window).width() <= 870){ // $(".banner .swiper-slide").each(function(index,item){ // $(this).find("img").attr("src",$(this).data("m")); // }) // } else { // $(".banner .swiper-slide").each(function(index,item){ // $(this).find("img").attr("src",$(this).data("pc")); // }) // } // }, oninit: function(swiper) { changeimgsrc(); swiper.update(); //swiper更新 }, onbeforeresize: function(swiper) { changeimgsrc(); swiper.update(); //swiper更新 } }); // 左右按钮 $('.arrow-left').on('click', function(e) { e.preventdefault(); myswiper.swipeprev() }); $('.arrow-right').on('click', function(e) { e.preventdefault(); myswiper.swipenext() }); function changeimgsrc() { if ($(window).width() <= 870) { $(".banner .swiper-slide").each(function(index, item) { $(this).find("img").attr("src", $(this).data("m")); }) } else { $(".banner .swiper-slide").each(function(index, item) { $(this).find("img").attr("src", $(this).data("pc")); }) } }