Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Per slide transitions #182
Comments
podiki
commented
Dec 17, 2015
|
Note that as a vertical slide it appears to work, here's an example (different transition because I found it hard to tell otherwise):
with relevant html output: <section>
<section id="slide-orgheadline2">
<h2 id="orgheadline2"><span class="section-number-2">1</span> Parent slide</h2>
<div class="outline-text-2" id="text-1">
</div></section>
<section id="slide-orgheadline1" data-transition="none">
<h3 id="orgheadline1"><span class="section-number-3">1.1</span> Test slide</h3>
<p>
Sample Text
</p>
</section>
</section> |
yjwen
closed this
in
a8e841a
May 4, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
podiki commentedDec 17, 2015
Reveal.js supports changing the transition on a per slide level (both in and out) through the
data-transitionproperty. If we try this in org-reveal however, the proper code seems to be exported, but it does not work. This is possibly related to horizontal versus vertical slides. The output of org-reveal will wrap a single top level slide in an additional<section>(for containing vertical subslides), but this seems to foul updata-transition. Removing the extra<section>makes this work, but is probably not the correct solution in general.Example:
Relevant part of the output: