$(function(){ var bannerswiper = new Swiper('.banner .swiper-container', { speed:500, autoplay : 5000, autoplayDisableOnInteraction : false, pagination : '.banner .swiper-pagination', paginationClickable :true, prevButton:'.banner .swiper-button-prev', nextButton:'.banner .swiper-button-next', }) $('.banner').mouseover(function(){ bannerswiper.stopAutoplay() }) $('.banner').mouseout(function(){ bannerswiper.startAutoplay() }) })