diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-10-20 13:33:07 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-10-20 13:33:07 -0400 |
commit | da40cf2172792ee56c787dc3e1ca5b65005156e3 (patch) | |
tree | 817f35e0a9e0bd18fac98833e28f2722ac79c650 /index.html | |
parent | a4f03be48580ba19a6be677b5619b74df2fedc5f (diff) | |
download | fosdem-2018-presentation-da40cf2172792ee56c787dc3e1ca5b65005156e3.tar fosdem-2018-presentation-da40cf2172792ee56c787dc3e1ca5b65005156e3.tar.gz |
add support for fragment styles (#192)
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 29 |
1 files changed, 21 insertions, 8 deletions
@@ -252,14 +252,27 @@ function linkify( selector ) { </section> <section> - <h2>Fragmented Views</h2> - <p>Hit the next arrow...</p> - <p class="fragment">... to step through ...</p> - <ol> - <li class="fragment"><code>any type</code></li> - <li class="fragment"><em>of view</em></li> - <li class="fragment"><strong>fragments</strong></li> - </ol> + <section> + <h2>Fragmented Views</h2> + <p>Hit the next arrow...</p> + <p class="fragment">... to step through ...</p> + <ol> + <li class="fragment"><code>any type</code></li> + <li class="fragment"><em>of view</em></li> + <li class="fragment"><strong>fragments</strong></li> + </ol> + </section> + <section> + <h2>Fragment Styles</h2> + <p>There's a few styles of fragments, like:</p> + <p class="fragment grow">grow</p> + <p class="fragment shrink">shrink</p> + <p class="fragment roll-in">roll-in</p> + <p class="fragment fade-out">fade-out</p> + <p class="fragment highlight-red">highlight-red</p> + <p class="fragment highlight-green">highlight-green</p> + <p class="fragment highlight-blue">highlight-blue</p> + </section> </section> <section> |