-
Notifications
You must be signed in to change notification settings - Fork 19
For html5slides
Frederick Feibel edited this page Oct 21, 2016
·
3 revisions
This presentation framework was released by engineers at Google. Since the closing of Google Code I'm not aware of an official repository. I have found forks of it on github: https://github.com/search?utf8=%E2%9C%93&q=html5slides&type=Repositories
-
reload: true
- Presentable needs to force a reload navigate to a slide.
1. Place the following in the tag
<link rel="stylesheet" href="path/to/presentable.css">
2. Add a slide where you want the table of contents to appear
<article>
<h3>Table of Contents</h3>
<nav id="presentable-toc" class="html5slides"></nav>
</article>
3. Add icon code as a child of the tag
<aside id="presentable-icon" class="html5slides">
<a title="Table of Contents" href="#3">
<img alt="Table of Contents" src="path/to/html5slides.png"/>
</a>
</aside>
3. Place after all the
tags<script src="path/to/presentable.js"></script>
<script>
presentable.toc({
framework: "html5slides"
})
</script>