Hello,
Unfortunately, this is not supported yet with the Swiper Slider!
Currently Video autoplay on Mobile Devices are only supported on iOS 10. Please consider following the Steps below to make it work for your iOS 10 Devices:
- Add the playsinline Attribute to the <video> Tag. Example:
<video id="slide-video" poster="images/videos/explore.jpg" preload="auto" loop autoplay muted playsinline>
...
</video>
- Then add the .no-placeholder Class to the .video-wrap Container that encloses the <video> Tag. Example:
<div class="video-wrap no-placeholder">
<video id="slide-video" poster="images/videos/explore.jpg" preload="auto" loop autoplay muted playsinline>
...
</video>
<div class="video-overlay" style="background-color: rgba(0,0,0,0.55);"></div>
</div>
This should definitely work fine.
Let us know if we can help you with anything else or if you find any further issues.