Stop using heavy JS sliders. Use pure CSS to make your image galleries feel like a mobile app.
.container {
scroll-snap-type: x mandatory;
overflow-x: scroll;
display: flex;
}
.item {
scroll-snap-align: center;
flex: 0 0 100%;
}
Result: Smooth, flick-to-scroll galleries that work perfectly on touch screens.
