Created
August 24, 2019 09:54
-
-
Save rienheuver/df5ff228c6883f96f47f94a6d6c49a2d to your computer and use it in GitHub Desktop.
This file contains 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
/* | |
Author: Rien Heuver, [email protected] | |
Clean Slider, this is all that is needed | |
Documentation on https://github.com/rienheuver/clean-slider | |
*/ | |
.slider { | |
display: grid; | |
grid-template-columns: 1fr; | |
overflow: hidden; | |
width: 100%; | |
perspective: 400px; | |
} | |
.slide { | |
grid-column: 1/2; | |
grid-row: 1/2; | |
transition: transform 300ms ease-in-out; | |
} | |
.slide-next { | |
transform: translateX(100%); | |
} | |
.slide-prev { | |
transform: translateX(-100%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment