1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-09-02 11:12:47 +02:00

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.
This commit is contained in:
Johannes Ammon
2015-01-18 18:12:36 +01:00
parent 95bba5179f
commit 420b6912d7
2 changed files with 25 additions and 0 deletions

View File

@@ -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.