diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-11-10 11:40:19 -0500 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-11-10 11:40:19 -0500 |
commit | c79376dab2998cdaf906bb281ae4fc220e2a2e3a (patch) | |
tree | 7fd3792129b687d45fea2f962cc0f1fd6ef140f5 /index.html | |
parent | df4e1fd346558adafc6decc96ec9366d720d6896 (diff) | |
download | fosdem-2018-presentation-c79376dab2998cdaf906bb281ae4fc220e2a2e3a.tar fosdem-2018-presentation-c79376dab2998cdaf906bb281ae4fc220e2a2e3a.tar.gz |
allow multiple control elements, document usage of global controls (#184, #204)
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -61,9 +61,9 @@ <h2>Vertical Slides</h2> <p> Slides can be nested inside of other slides, - try pressing <a href="#/2/1">down</a>. + try pressing <a href="#" class="navigate-down">down</a>. </p> - <a href="#/2/1" class="image"> + <a href="#" class="image navigate-down"> <img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow"> </a> </section> @@ -181,20 +181,20 @@ will be added as a class to the document element when the slide is open. This lets you apply broader style changes, like switching the background. </p> - <a href="#/7/1" class="image"> + <a href="#" class="image navigate-down"> <img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow"> </a> </section> <section data-state="blackout"> <h2>"blackout"</h2> - <a href="#/7/2" class="image"> + <a href="#" class="image navigate-down"> <img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow"> </a> </section> <section data-state="soothe"> <h2>"soothe"</h2> - <a href="#/7/0" class="image"> - <img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="-webkit-transform: rotate(180deg);"> + <a href="#" class="image navigate-next"> + <img width="178" height="238" src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Up arrow" style="-webkit-transform: rotate(-90deg);"> </a> </section> </section> @@ -340,7 +340,7 @@ function linkify( selector ) { </div> <script src="lib/js/head.min.js"></script> - <script src="js/reveal.min.js"></script> + <script src="js/reveal.js"></script> <script> |