HtmlPresenter is a set of simple JavaScript functions that allow to:
(left-click to continue)

Unhide paragraphs one by one

Store several pages in one HTML file

Control the presentation via mouse or keyboard

You can simply download the presentation.js file
and make use of it like in this sample HTML code:

<html>
 <head>
  <title>Html Presentation</title>

  <script type="text/javascript" src="presentation.js">
  </script>
 </head>
 <body onload="preparePresentation();">
  <div class="page">
   <div class="paragraph"> Page 1, Paragraph a </div>

   <div class="paragraph"> Page 1, Paragraph b </div>
   <div class="paragraph"> Page 1, Paragraph c </div>
  </div>
  <div class="page">

   <div class="paragraph"> Page 2, Paragraph a </div>
   <div class="paragraph"> Page 2, Paragraph b </div>
   <div class="paragraph"> Page 2, Paragraph c </div>

  </div>
 </body>
</html>
    
<< >>