Created
March 12, 2015 12:38
-
-
Save partageit/a1b6404d0b5c8506adca to your computer and use it in GitHub Desktop.
Partage-it.com : transition entre les slides pour remark.js
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
.remark-fading { | |
z-index: 9; | |
} | |
.remark-slide-container { | |
transition: opacity 1s linear, right 1s ease-in-out; | |
opacity: 0; | |
right: 1000px; | |
} | |
.remark-visible { | |
transition: opacity 1s linear, right 1s ease-in-out; | |
opacity: 1; | |
right: 0px; | |
} | |
.remark-visible ~ .remark-slide-container { | |
right: -1000px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is it possible also if it is, how ...
To use your code to move to another slide, ie, for
---
and some other code, the animation within the slide, ie--
.How to detect the end of the slide, how to set a condition?
Tnx