-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex - Copy.html
49 lines (43 loc) · 1.75 KB
/
index - Copy.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raw Elements</title>
<link rel="stylesheet" href="css/main.css" />
<script src='https://cdnjs.cloudflare.com/ajax/libs/tone/14.7.69/Tone.js'></script> <!-- bring in the Tone.js library - google search for tone.js cdn-->
</head>
<body>
<div id="loadscreen">
<h1>loading...<br>loading...<br>loading...<br>loading...<br>loading...<br>loading...<br>loading...<br>loading...<br>loading...<br>loading...<br>loading...<br>loading...<br>loading...</h1>
</div>
<div id="welcomescreen">
<br>
<br>
<br>
<br>
<p id="welcometext">Raw Elements<br><br>By Gawain Hewitt and Raw Material<br></p>
<p>Touch or click an image to enter each element <br> move mouse or finger to change sound balance</p>
<p>on iPhone you will need to <br>
switch silent mode off on the <br>
side of your phone</p>
<p id="clicktostart"> Touch or click <br>screen to start</p>
</div>
<div id="container">
<div id="image0">
<a href="air.html"><img src="images/menu_air.jpg" alt="Wind" width="600" height="600" id="i0"></a>
</div>
<div id="image1">
<a href="water.html"><img src="images/menu_water.jpg" alt="Water" width="600" height="600" id="i1"></a>
</div>
<div id="image2">
<a href="fire.html"><img src="images/menu_fire.jpg" alt="Fire" width="600" height="600" id="i2"></a>
</div>
<div id="image3">
<a href="earth.html"><img src="images/menu_earth.jpg" alt="Earth" width="600" height="600" id="i3"></a>
</div>
<span class="clear"></span> <!-- this keeps the above elements within the parent div-->
</div>
<script src="home.js"></script>
</body>
</html>