Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created April 10, 2016 07:08
Show Gist options
  • Select an option

  • Save hsleonis/aff2567e67486fd91a1517ee68997eb8 to your computer and use it in GitHub Desktop.

Select an option

Save hsleonis/aff2567e67486fd91a1517ee68997eb8 to your computer and use it in GitHub Desktop.
Scroll snapping image gallery with CSS
/**
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