-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·71 lines (60 loc) · 3.13 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="css/jquery-ganttView.css" />
<link rel="stylesheet" type="text/css" href="css/jquery-jqplot.css" />
<link rel="stylesheet" type="text/css" href="css/graph-starcraft.css" />
<title>GraphStarcraft</title>
</head>
<body>
<div id="about">
<h1>Graph Starcraft!</h1>
<p id="email_thingy">Want updates? (like when zerg, toss, or other major things happen?) Email me a note to be added to the Graph Starcraft update <a href="mailto:[email protected]">email list</a>!<p>
<p>Instructions:</p>
<ol>
<li>Add Buildings with the "+ Building ↓" button (in the top left)</li>
<li>Add Tasks with the "+ Task →" button (next to each building)</li>
<li>Click & drag to move tasks around horizontally</li>
<li>Watch below as your resources graph adjusts accordingly (colors:
<span style="font-weight: bold; color: #4bb2c5">Minerals</span>,
<span style="font-weight: bold; color: #00ff00">Gas</span>, and supply:
<span style="font-weight: bold; color: #ff5800">Current</span> /
<span style="font-weight: bold; color: #EAA228">Cap</span>)
</li>
<li>To save, click on the "Chart → Text" button and copy the text somewhere safe</li>
<li>To load your text, paste it in the textfield and click the "Text → Chart" button</li>
</ol>
<p>Confused? Try the <a href="#" onclick="buildOrder = exampleBuildOrder; ganttTheData(); return false;">Example Build Order</a></p>
<br />
<p><a href="http://albert-hwang.com/graphstarcraft/">More Projects Notes...</a></p>
<p>by <a href="http://albert-hwang.com">Albert Hwang</a>.</p>
</div>
<div id="ganttChartDiv"></div>
<div id="graphDiv"></div>
<script type="text/javascript" src="js/lib/jquery.js"></script>
<script type="text/javascript" src="js/lib/jquery-ui.js"></script>
<script type="text/javascript" src="js/lib/jquery-jqplot.js"></script>
<script type="text/javascript" src="js/lib/underscore.js"></script>
<script type="text/javascript" src="js/taskDescription.js"></script>
<script type="text/javascript" src="js/buildOrder.js"></script>
<script type="text/javascript" src="js/ui.js"></script>
<script type="text/javascript" src="js/ganttBuilder.js"></script>
<script type="text/javascript" src="js/timelineBuilder.js"></script>
<script type="text/javascript" charset="utf-8">
ganttTheData();
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23491061-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>