-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtutorial.html
93 lines (87 loc) · 4.29 KB
/
tutorial.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
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Electrosity - Tutorial</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-responsive.min.css">
<link href='http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here|Nothing+You+Could+Do' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<header>
<div class="container">
<div class="row-fluid titleBar">
<div class="span4 offset2">
<a href="/" id="title">Electrosity</a>
</div>
<div class="span6">
<div class="span4"><a href="/tutorial.html" class="titlelink">Tutorial</a></div>
<div class="span4"><a href="/levels.html" class="titlelink" >Levels</a></div>
</div>
</div>
</div>
</header>
<div id="cr-stage">
<div id="tutorialSlides" class="carousel slide">
<ol class="carousel-indicators">
<li data-target="#tutorialSlides" data-slide-to="0" class="active"></li>
<li data-target="#tutorialSlides" data-slide-to="1"></li>
<li data-target="#tutorialSlides" data-slide-to="2"></li>
<li data-target="#tutorialSlides" data-slide-to="3"></li>
<li data-target="#tutorialSlides" data-slide-to="4"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item">
<img src="img/tutorial_1.png" alt=""/>
<div class="carousel-caption">
<h4>The Game</h4>
<p>Electrosity is a variation on a traditional 'Slip-n-slide' game in which you play the part of a lightning bolt, lost in the bowels of a ship wreck during a storm.</p>
</div>
</div>
<div class="item">
<img src="img/tutorial_2.png" alt=""/>
<div class="carousel-caption">
<h4>The Point</h4>
<p>Each level finds you in a new area of the ruined ship. The goal is simple, to get to the hatch and continue your search to return outside to the storm!</p>
</div>
</div>
<div class="item">
<img src="img/tutorial_3.png" alt=""/>
<div class="carousel-caption">
<h4>Gotcha</h4>
<p>Oh ... didn't I mention? As a lightning bolt you can only move very fast in a straight line, so you'll have to proceed through each area in a specific order to get out...</p>
</div>
</div>
<div class="item">
<img src="img/tutorial_4.png" alt=""/>
<div class="carousel-caption">
<h4>The Splash</h4>
<p>As a bolt of electric charge ... you might want to avoid the water coursing in through holes in the hull :(</p>
</div>
</div>
<div class="item"><img src="img/tutorial_5.png" alt=""/>
<div class="carousel-caption">
<h4>It's a trap!</h4>
<p>Sometimes you'll notice the hatch is closed. This means theres a key lying around somewhere for you to find. Don't ask how you carry it ... just don't OK!</p>
</div>
</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#tutorialSlides" data-slide="prev">‹</a>
<a class="carousel-control right" href="#tutorialSlides" data-slide="next">›</a>
</div>
</div>
<footer>
<!-- Load jQuery -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="lib/bootstrap/bootstrap.min.js"></script>
<!-- Start The Game -->
</footer>
</div>
</body>
</html>