summaryrefslogtreecommitdiffhomepage
path: root/index.html
diff options
context:
space:
mode:
authorHakim El Hattab2011-12-22 00:00:29 -0800
committerHakim El Hattab2011-12-22 00:00:29 -0800
commitbdff009c74dec78c012b0d8c3961bb70639404c2 (patch)
tree96db94cab26c69672a293b120620a0dd4f2a810b /index.html
parent2026c9645c526ce3d5e8ffd34a92e8d1c16326a8 (diff)
added optional presentation progress bar
Diffstat (limited to 'index.html')
-rw-r--r--index.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/index.html b/index.html
index 6136c92..b9fe4ae 100644
--- a/index.html
+++ b/index.html
@@ -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="#">&#x25C4;</a>
<a class="right" href="#">&#x25BA;</a>
<a class="up" href="#">&#x25B2;</a>
<a class="down" href="#">&#x25BC;</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,