$(function () { var swiperFlag = false; var wyzVido = new Swiper('.e_bannerA-2 .swiper-container', { pagination: { el: '.e_bannerA-2 .p_pagenation', clickable: true, }, // 切换完毕事件 on: { init: function () { }, slideChangeTransitionEnd: function () { var _this = $('.e_bannerA-2 .swiper-container .swiper-slide').eq(this.activeIndex); // 执行一下 if (!swiperFlag) { swiperFlag = true; } else { videoSelect(_this); } } } }); videoSelect($('.e_bannerA-2 .swiper-container .swiper-slide.swiper-slide-active')); function videoSelect(_this) { var cc = _this.find('.videoContent .video').length; console.log(cc); if (cc) { wyzVido.autoplay.stop(); _this.find('.videoContent .video').trigger('play'); _this.find('video').bind('ended', function () { wyzVido.slideNext(); wyzVido.autoplay.start(); }); }else{ } } })