var swiper = new Swiper('.swiper-container', {
pagination : '.swiper-pagination',
paginationClickable : true,
onTransitionEnd : function(swiper) {
alert(1)
if (swiper.activeIndex == 1) {
document.getElementById("yearAudio").play();
} else {
document.getElementById("yearAudio").pause();
}
}
});
开发环境是app?还是web?