Welcome to

Slidephant Logo

Press Enter or → for next, ← for previous.

How to Setup Slidephant

  1. Include Slidephant.js in your HTML head
  2. Add your slides as <section> elements in the body
  3. Slidephant auto-initializes on page load
  4. Navigate with arrow keys or Enter
<!doctype html>
<html>
  <head>
    <script src="Slidephant.js"></script>
  </head>
  <body>
    <section>
      <h1>First Slide</h1>
    </section>
    <section>
      <h2>Second Slide</h2>
    </section>
  </body>
</html>