-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (44 loc) · 1.85 KB
/
index.html
File metadata and controls
61 lines (44 loc) · 1.85 KB
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
<html lang="en">
<meta charset="utf-8"
content= "width=device-width, initial-scale=1.0">
<head>
<title>Cipher</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body click='runSound()'>
<div id="viewport" style="width:100%; position:absolute">
<div id="container">
<div id="draggableAlphabet">
<img id="rotateAlphabet" ontouchend="runSound()" src="../assets/Alphabet.svg"></img>
</div>
<div id="draggableNumbers">
<img id="rotateNumbers" ontouchend="runSound()" src="../assets/Numbers.svg"></img>
</div>
<div id="draggableSymbols">
<img id="rotateSymbols" ontouchend="runSound()" src="../assets/Symbols.svg"></img>
</div>
<div id="staticmiddle">
<img id="rotateStaticmiddle" ontouchend="runSound()" src="../assets/Staticmiddle.svg"></img>
</div>
<div id="draggablerunes">
<img id="rotaterunes" ontouchend="runSound()" src="../assets/Runes.svg"></img>
</div>
<div id="draggableElements">
<img id="rotateElements" ontouchend="runSound()" src="../assets/Elements.svg"></img>
</div>
<div id="staticplease">
<div id="staticelements">
<img id="staticsvg" src="../assets/static.svg"></img>
</div>
</div>
<div id="staticcontainer">
<img id="staticring" src="../assets/Ring.svg"></img>
</div>
</div>
</div>
<script src="\libraries\howler\dist\howler.js"></script>
<script src="https://code.jquery.com/jquery-3.6.3.min.js"></script>
<script src="functionality.js">
</script>
</body>