diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -35,6 +35,9 @@ reveal.js is an easy to use, HTML based, presentation tool. You'll need a modern browser with support for CSS 3D transforms to see it in its full glory. </p> + <p> + <i><small>- <a href="http://hakim.se">Hakim El Hattab</a></small></i> + </p> </section> <!-- Example of nested vertical slides --> @@ -167,13 +170,16 @@ linkify( 'a' ); </section> </div> - + <aside class="controls"> <a class="left" href="#">◄</a> <a class="right" href="#">►</a> <a class="up" href="#">▲</a> <a class="down" href="#">▼</a> </aside> + + <!-- Displays presentation progress, max value changes via JS to reflect # of slides --> + <progress min=0 max=100 value=0></progress> <script src="js/reveal.js"></script> <script src="lib/highlight.js"></script> @@ -182,6 +188,9 @@ linkify( 'a' ); // Display controls in the bottom right corner controls: true, + // Display a presentation progress bar + progress: true, + // Apply a 3D roll to links on hover rollingLinks: true, |