GitXplorerGitXplorer
c

pow

public
80 stars
10 forks
5 issues

Commits

List of commits on branch master.
Unverified
6fa811f282ebcea67971ed4d84ae055e4580b49c

Use development sources out of box in pow.html.

cchromakode committed 14 years ago
Unverified
cade966a46650cd49820066fd3f76f54ae36fa75

Reverse touch gesture directions to act more like a filmstrip of slides.

cchromakode committed 14 years ago
Unverified
d35a91bd931e9897733d8118663ef507173ba4f1

Fix touch gesture thresholding. Thanks go to Marcus Westin!

cchromakode committed 14 years ago
Unverified
3e907e716251e619281a10b3f5dddd0e0e6ba176

Fix the paths of dev script tags.

cchromakode committed 14 years ago
Unverified
e2a28e59d1a6e707612faa07b97adc5733096fb1

Add touch and canvg modules into a mobile bundle.

cchromakode committed 14 years ago
Unverified
dde5125910e0ccdfe90ebb67ef7b107f67d84d30

Basic touch gestures module.

cchromakode committed 14 years ago

README

The README file for this repository.

About

POW is a simple presentation system for HTML5.

Features:

  • Write slides with simple HTML
  • Apply consistent styles using CSS
  • Flexible scripting using JavaScript
  • Extensible through modules
  • Self-embedding for standalone offline use

Example

See POW in action (and view source): usepow.com

The markup for a simple presentation looks like this:

<html>
<head>
    <script src="http://usepow.com"></script>
</head>
<body>
    <div id="slides">
        <div class="slide">
            <h1>Hello, world.</h1>
        </div>
    </div>
</body>
</html>