-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumentation.html
80 lines (76 loc) · 5.29 KB
/
documentation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<head>
<title>Clockwork</title>
<link rel="stylesheet" href="css/style.css" />
<script src="js/taglines.js"></script>
<script src="js/documentation.js"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date(); a = s.createElement(o),
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g; m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-96597717-1', 'auto');
ga('send', 'pageview');
</script>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
</head>
<body>
<div id="splashPage" class="fixedHeader">
<div id="clockworkLogo"></div>
<div id="header">
<h1><a href="index.html">Clockwork</a></h1>
<h3 id="tagline">>The game engine that doesn’t grind your gears</h3>
<h2>An open platform for developing HTML5 games based on modular components.</h2>
<h4>If you want to know why you should choose Clockwork, just keep scrolling!</h4>
<h2>
<div class="red">Coming soon!</div>
</h2>
<div class="buttonsContainer">
<a href="howitworks.html"><div class="linkText">How does it work?</div></a>
<a href="getstarted.html"><div class="linkText">Get started</div></a>
<a href="documentation.html"><div class="linkText">Documentation</div></a>
<a href="http://clockwork.js.org/blog"><div class="linkText">Blog</div></a>
</div>
</div>
<a class="twitterLogo" href="https://twitter.com/clockworkjs"></a>
<a class="githubLogo" href="https://github.com/clockworkDev"></a>
</div>
<div id="contentSection">
<div id="documentationPages">
<span style="color:red;">This documentation is a work in progress, if you have questions feel free to <a href="https://twitter.com/clockworkJS">tweet us</a> or <a href="https://github.com/ClockworkDev/ClockworkWebsite/issues">open a GitHub issue</a></span>
<ul>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="projectStructure" href="#">Project structure</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="manifest" href="#">Manifest</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="components" href="#">Components</a></li>
<ul>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="events" href="#">Events</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="inheritance" href="#">Inheritance</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="collisions" href="#">Collisions</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="objectAPI" href="#">Object API</a></li>
</ul>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="spritesheets" href="#">Spritesheets</a></li>
<ul>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="spritesheetsdotjs" href="#">Spritesheet.js</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="otherspritesheets" href="#">Other libraries</a></li>
</ul>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="levels" href="#">Levels</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="tools" href="#">Tools</a></li>
<ul>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="cli" href="#">CLI tools</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="dependencies" href="#">Packages</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="vsce" href="#">VS Code Extension</a></li>
</ul>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="advancedTopics" href="#">Advanced topics</a></li>
<ul>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="loaders" href="#">Loaders</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="customcollisions" href="#">Custom collisions</a></li>
<li><a onclick="loadDocumentationPage(this.dataset.target);return false;" data-target="advancedComponentAPI" href="#">Advanced API</a></li>
</ul>
</ul>
</div>
<div id="documentationContent"></div>
</div>
</body>
</html>