GitXplorerGitXplorer
c

pow

public
80 stars
10 forks
5 issues

Commits

List of commits on branch master.
Unverified
f7b774494e8c8f51917e3fa2a371ac925f42e56b

Put nav icon fills in the markup so canvg can see them.

cchromakode committed 14 years ago
Unverified
9465d1e7351deb91f2b109838f7cea3e7be5dc7c

Slight markup tweaks to work well with canvg.

cchromakode committed 14 years ago
Unverified
114abf10ad89fdcf7890444ca13ec1705c0cf364

Add canvg module for fallback SVG support on browsers supporting canvas but not SVG.

cchromakode committed 14 years ago
Unverified
60f336ff11c5686176c9a3ed81e6a0d4d626e5f9

Run compatibility check sync so polyfills are available to modules right away.

cchromakode committed 14 years ago
Unverified
473f3dc0ffe289041de70ede57bacaebd5b1e56f

Fire pow.slides.on.show before slide.on.show, and fire both after the slide is display:block.

cchromakode committed 14 years ago
Unverified
337cde1140edb0fc50f4af0be09f0e5211d0658e

Only run the compatibility check if the compat module is available.

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>