$(function () { var swiperflag = false; var wyzvido = new swiper('.e_bannerd-1 .swiper-container', { autoplay: { delay: 6000, stoponlastslide: false, disableoninteraction: true, }, speed: 1200, loop: true, navigation: { nextel: '.e_bannerd-1 .p_btn_next ', prevel: '.e_bannerd-1 .p_btn_prev ', }, pagination: { el: '.e_bannerd-1 .p_pagenation', clickable: true, }, // 切换完毕事件 on: { init: function () { }, slidechangetransitionend: function () { var _this = $('.e_bannerd-1 .swiper-container .swiper-slide').eq(this.activeindex); // 执行一下 if (!swiperflag) { swiperflag = true; } else { videoselect(_this); } } } }); videoselect($('.e_bannerd-1 .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(); }); } } })