A Pen by rachelandrew on CodePen.
Created
November 24, 2018 13:00
-
-
Save biswajitpaul01/f89769eb1336e1bdab71515eeea5f0a8 to your computer and use it in GitHub Desktop.
scroll snapping
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
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/12005/gallery2.jpg"> | |
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/12005/gallery6.jpg"> | |
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/12005/gallery2.jpg"> | |
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/12005/gallery6.jpg"> | |
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/12005/gallery2.jpg"> | |
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/12005/gallery6.jpg"> |
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
body { | |
margin: 0; | |
padding: 40px 0 0 0; | |
display: flex; | |
overflow-x: scroll; | |
scroll-snap-type: x mandatory; | |
} | |
img { | |
width: 31vw; | |
height: 300px; | |
margin: 0 3.5vw 0 0; | |
object-fit: cover; | |
scroll-snap-align: start; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment