Created
April 10, 2016 07:08
-
-
Save hsleonis/aff2567e67486fd91a1517ee68997eb8 to your computer and use it in GitHub Desktop.
Scroll snapping image gallery with CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| Reference: | |
| Theory: https://webkit.org/blog/4017/scroll-snapping-with-css-snap-points | |
| Examples: https://webkit.org/demos/scroll-snap | |
| plunker: https://plnkr.co/edit/gTxGcEanBRjl7badrjBS | |
| */ | |
| .parent{ | |
| -webkit-scroll-snap-type: mandatory; | |
| -webkit-scroll-snap-points-x: repeat(100%); | |
| } | |
| .child{ | |
| -webkit-scroll-snap-coordinate: 0% 0%; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment