The swiper webcast of autoplay uses the mouse to slide part of the picture, and it will get stuck when it is released, and the reason can not be found.

Mobile uses the swiper carousel plug-in. Automatic scrolling is set, as shown in the figure. When you slide part of the mouse, the mouse sometimes gets stuck. Under normal circumstances, the mouse slide will slide over automatically. Now you can"t find the reason. Both the swiper3 version and version 4 have tried, but this situation still occurs from time to time. Now it is normal. Refresh may have this problem

.

<link href="https://cdn.bootcss.com/Swiper/3.4.2/css/swiper.min.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery.min.js"></script>
.home .banner {width: 100%;height: 225px;overflow: hidden;}
<div class="banner swiper-container">
    <div class="swiper-wrapper">
        <div class="swiper-slide">
            <img src="images/banner.png" alt="">
        </div>
        <div class="swiper-slide">
            <img src="images/home/banner_home.png" alt="">
        </div>
        
    </div>
</div>
<script src="https://cdn.bootcss.com/Swiper/3.4.2/js/swiper.jquery.min.js"></script>

var mySwiper = new Swiper(".swiper-container", {
    
    loop: true,
    autoplay:1500,
    autoplayDisableOnInteraction:false,
    loop:true
})
Menu