diff options
author | Johannes Ammon | 2015-01-18 18:12:36 +0100 |
---|---|---|
committer | Johannes Ammon | 2015-01-18 18:12:36 +0100 |
commit | 420b6912d7ef004f3ced3cb89d95abf7a9ed1274 (patch) | |
tree | 0d082e4cdf3edc0fb1652076bbeac009a311a5ed /README.md | |
parent | 95bba5179fa422ec8bd3934a67929053b41ac5d8 (diff) |
Adding one-sided transitions
Now the transition isn’t any more „per slide“ but „per movement of a
slide“. So the slide can disappear in another way than it appeared.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -474,6 +474,27 @@ The global presentation transition is set using the ```transition``` config valu </section> ``` +You can as well override only the appearing or the disappearing of the slide: + +```html +<section data-transition="slide"> + The train goes on … +</section> +<section data-transition="slide"> + and on … +</section> +<section data-transition="slide-in fade-out"> + and stops. +</section> +<section data-transition="fade-in slide-out"> + (Passengers entering and leaving) +</section> +<section data-transition="slide"> + And it starts again. +</section> +``` + + Note that this does not work with the page and cube transitions. |