-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (83 loc) · 3.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<meta charset="utf-8">
<title>Dyno</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="../src/assets/stylesheets/reset.css" />
<link rel="stylesheet" type="text/css" href="../src/assets/stylesheets/game.css" />
<link rel="icon" type="image/png" href="../src/assets/images/climber_icon.png" />
<script type="application/javascript" src="./main.js"></script>
<meta property="og:title" content="Dyno" />
<meta property="og:image" content="../src/assets/images/dyno_screen.PNG" />
<meta
property="og:description"
content="A rock climbing themed platforming game where you can climb cave walls and dynamically jump from rock face to rock to reach the cave exit to find your friends."
/>
<meta
property="og:url"
content="http://dyno.taylormusolf.com/"
/>
</head>
<body class='stop-scrolling'>
<header id='logo-container'>
<img id='logo' src="../src/assets/images/dyno_logo_2.png"/>
<article class='credit'>
<p>Game by Taylor Musolf</p>
<p>Music by Kai Engel</p>
</article>
</header>
<nav class="nav-bar">
<div class="social-links">
<a href="https://github.com/taylormusolf" target="_blank"><i class="fa fa-github"></i></a>
<a href="https://www.linkedin.com/in/taylor-musolf/" target="_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://angel.co/u/taylor-musolf" target="_blank"><i class="fa fa-angellist"></i></a>
</div>
<li id='play-button'>Play</li>
<div id='player-menu' class='hidden'>
Player Lives:
<span id='player-lives'> 3</span>
</div>
<div class='audio-controls'>
<div>Music</div>
<i id='audio-play' class="fa fa-play"></i>
<i id='audio-pause' class="hidden fa fa-pause"></i>
</div>
</nav>
<audio loop id='audio' src='../src/assets/audio/Kai_Engel_-_Moonlight_Reprise.mp3'></audio>
<ul id='menu'>
<span class='game-text'>
<article class='back-story'>
<h1>The Story So Far..</h1>
<p>You slept in too late and your friends went to explore the cave without you</p>
<p>Look for clues they may have left behind to catch up to them</p>
<p>Climb walls to reach the cave exit</p>
</article>
</span>
</ul>
<article id="more-levels" class="more-levels hidden">
<h1>You caught up to your friends!</h1>
<p>Press Play to start the game again!</p>
<br/>
<h1>Credits</h1>
<p>Game by Taylor Musolf</p>
<p>Music by Kai Engel</p>
</article>
<article id="game-over" class="more-levels hidden">
<h1>Game Over</h1>
<p>You ran out of lives!</p>
<p>Press Play to start over!</p>
</article>
<div class="game-container">
<div class="canvas-container">
<canvas id="canvas"></canvas>
</div>
</div>
<article id='controls' class="controls hidden">
<h1>Controls:</h1>
<p>A, D - left and right</p>
<p>W, S - Press repeatedly to climb up and down walls</p>
<p>SpaceBar - Jump</p>
<p>Jump off of walls while climbing to do a "wall jump" and reach the exit!</p>
</article>
</body>
</html>