<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <title>JQS5 - jQuery Simple Standards-Based Slide Show System</title>
  </head>
  <body>
    <h1>JQS5 - jQuery Simple Standards-Based Slide Show System</h1>
    <p>by <a href="http://staticfree.info">Steve Pomeroy</a></p>
    <h2>Introduction</h2>
    <p>This is a very simple jQuery + Javascript Slide Show engine. It can turn the most basic document, such as <a href="http://staticfree.info/projects/jqs5/?format=xml">this one</a>, into <a href="http://staticfree.info/projects/jqs5/?format=jqs5">a slideshow</a>.</p>
    <p>The concept is based on <a href="http://meyerweb.com/eric/tools/s5/">S5</a> which is a wonderful HTML slideshow engine. S5, however, requires you to add more markup than I care to worry about. JQS5 doesn't require any special markup to your document. Just add in the header and you're set!</p>
    <h2>Using JQS5</h2>
    <p>To use, simply put this in your header:</p>
    <blockquote>
      <code>
        <pre>
  &lt;link rel="stylesheet" href="jqs5.css" /&gt;
  &lt;link rel="stylesheet" href="theme/staticfree/style.css" /&gt;
  &lt;script src="jquery.js"&gt;&lt;/script&gt;
  &lt;script src="jqs5.js"&gt;&lt;/script&gt;
  &lt;script type="text/javascript"&gt;
        $(document).ready(jqs5_init);
  &lt;/script&gt;
</pre>
      </code>
    </blockquote>
    <h2>Simple HTML</h2>
    <p>You then just make your slides like you would a basic HTML page. Each &lt;h2/&gt; becomes a slide title and all the things under it are the slide body. The &lt;h1&gt; is the title of the presentation and things below it are part of the footer.</p>
    <h2>Simple HTML Example</h2>
    <blockquote>
      <code>
        <pre>
    &lt;h1&gt;Slideshow Title&lt;/h1&gt;
    &lt;p&gt;By Steve Pomeroy&lt;/p&gt;

    &lt;h2&gt;Kitten Training Tips&lt;/h2&gt;
    &lt;ul&gt;
      &lt;li&gt;Start small&lt;/li&gt;
      &lt;li&gt;Use treats&lt;/li&gt;
      &lt;li&gt;Accept failure&lt;/li&gt;
    &lt;/ul&gt;
</pre>
      </code>
    </blockquote>
    <h2>Kitten Training Tips</h2>
    <ul>
      <li>Start small</li>
      <li>Use treats</li>
      <li>Accept failure</li>
    </ul>
    <h2>Download</h2>
    <p>Grab an <a href="jqs5.tar.gz">archive of JQS5</a> or check it out from <a href="https://staticfree.info/svn/jqs5">the JQS5 SVN repository</a> and <a href="http://jquery.com/">jQuery</a>, paste it into your HTML and go!</p>
  </body>
</html>
