forked from ksky521/nodeppt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
153 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"css": "text/css", | ||
"gif": "image/gif", | ||
"html": "text/html", | ||
"ico": "image/x-icon", | ||
"jpeg": "image/jpeg", | ||
"jpg": "image/jpeg", | ||
"js": "text/javascript", | ||
"json": "application/json", | ||
"pdf": "application/pdf", | ||
"png": "image/png", | ||
"svg": "image/svg+xml", | ||
"swf": "application/x-shockwave-flash", | ||
"tiff": "image/tiff", | ||
"txt": "text/plain", | ||
"wav": "audio/x-wav", | ||
"wma": "audio/x-ms-wma", | ||
"wmv": "video/x-ms-wmv", | ||
"xml": "text/xml" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<!-- | ||
Powered By nodePPT | ||
version: 0.2.5 | ||
site: https://github.com/ksky521/nodePPT | ||
date: 2013-05-05 | ||
--> | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>nodePPT Demo - By 三水清</title> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<link rel="stylesheet" media="all" href="/css/nodeppt.css"> | ||
<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="/css/phone.css"> | ||
</head> | ||
<body> | ||
|
||
<slides id="container" class="layout-widescreen"> | ||
<slide class="slide "> | ||
<article class="flexbox vcenter"> | ||
<h1>nodePPT Demo</h1> | ||
<h3><a href="#">三水清</a></h3> | ||
</article> | ||
</slide> | ||
<slide class="slide"> | ||
<hgroup> | ||
<h2>目录</h2> | ||
</hgroup> | ||
<article> | ||
<ul> | ||
<li>这里是目录。。</li> | ||
</ul> | ||
</article> | ||
</slide> | ||
|
||
<slide class="slide thank-you-slide segue nobackground"> | ||
<article class="flexbox vleft auto-fadein"> | ||
<h2><Thank You!></h2> | ||
</article> | ||
</slide> | ||
<slide class="slide"> | ||
<hgroup> | ||
<h2>参考资料</h2> | ||
</hgroup> | ||
<article> | ||
<ul> | ||
<li><a href="https://github.com/ksky521/nodePPT" target="_blank">Powered By nodePPT</a></li> | ||
</ul> | ||
</article> | ||
</slide> | ||
<div class="slideTip" id="tip"></div> | ||
<canvas id="drawBoard" class="draw-board" width="900" height="700"></canvas> | ||
</slides> | ||
<div class="progress"><span id="progress"></span></div> | ||
|
||
<script src="https://gist.github.com/ksky521/5519468/raw/17ebd7450d7605c6e320206aaf5790a6cdd76d8e/gistfile1.js"></script> | ||
<script> | ||
</script> | ||
</body> | ||
</html> |