Last active
August 29, 2015 13:58
-
-
Save 0m15/10018721 to your computer and use it in GitHub Desktop.
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
/* carousel */ | |
.carousel { | |
overflow: hidden; | |
position: relative; | |
height: 340px; | |
} | |
.carousel-item { | |
position: absolute; | |
background: #eee; | |
width: 400px; | |
height: 200px; | |
} | |
.carousel-controls { | |
position: absolute; | |
bottom: 20px; | |
} | |
/* carousel transitions */ | |
.slide-enter, | |
.slide-leave { | |
transition: all .5s ease-out; | |
} | |
.slide-enter { | |
left: 100%; | |
} | |
.slide-enter.slide-enter-active { | |
left: 0; | |
} | |
.slide-leave { | |
left: 0; | |
} | |
.slide-leave.slide-leave-active { | |
left: -100%; | |
} | |
.backward .slide-enter { | |
left: -100%; | |
} | |
.backward .slide-enter.slide-enter-active { | |
left: 0; | |
} | |
.backward .slide-leave.slide-leave-active { | |
left: 100%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment