touch scroll css gallery

Solutions on MaxInterview for touch scroll css gallery by the best coders in the world

showing results for - "touch scroll css gallery"
Simona
07 Jan 2017
1.ms-touch.slider {
2  overflow-x: scroll;
3  overflow-y: hidden;
4  
5  -ms-overflow-style: none;
6  /* Hides the scrollbar. */
7  
8  -ms-scroll-chaining: none;
9  /* Prevents Metro from swiping to the next tab or app. */
10  
11  -ms-scroll-snap-type: mandatory;
12  /* Forces a snap scroll behavior on your images. */
13  
14  -ms-scroll-snap-points-x: snapInterval(0%, 100%);
15  /* Defines the y and x intervals to snap to when scrolling. */
16}
17
18.animate { transition: transform 0.3s ease-out; }