-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathold.html
89 lines (78 loc) · 2.98 KB
/
old.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="style.css">
<title></title>
</head>
<body id="body">
<div id="loose">
<center>
<h1>YOU LOST</h1>
<h2 id="loosepoints"></h2>
<button onclick="location.reload();">try again</button><br><br>
<button onclick="window.location.href = 'mainmenu.html'">Back To Main Menu</button>
</center>
</div>
<!--<button onclick="print()" id="print">print</button>-->
<center>
<table>
<tr>
<td>
<div id="controlls2">
<button onclick="srotate(-1);" class="buttons">l rot</button>
<br>
<button onclick='smove(-1,0)' id="left" class="buttons">left</button>
<br>
<button onclick="pause2();" class="buttons">pause</button>
</td>
</div>
<!--<td>-->
<canvas id="canvas" height="605" width="305">test</canvas>
<canvas id="2display" height="110" width="110"></canvas>
<img src="settings.svg" id="settings" onclick="opensettings()"/>
<!-- </td>-->
<h2 id="points"></h2>
<div id="controlls">
<!--<td>-->
<button onclick="srotate(1)" class="buttons">r rot</button>
<br>
<button onclick='smove(1,0)' id="right" class="buttons">right</button>
<br>
<button onclick='fastdown = true;' id="down" class="buttons">down</button>
</div>
<!--</td>
</tr>-->
</table>
</center>
<br>
<center>
<tr>
<br>
<br>
<button id="pchelp" onclick="closepchelp()">
<p>pc controlls:<br>
a - move shape left<br>
d - move shape right<br>
s - make the shape fall to the bottom<br>
left arrow - rotate shape left<br>
right arrow - rotate shape right<br>
e - pause<br>click to close</p>
</button>
</tr>
</center>
<div id="settingsPage2">
<center>
<p id="changecolortext">change colors</p>
<button style="width: 40px; height: 40px;" onclick="changecolor2()"><--</button> <button style="width: 40px; height: 40px;" onclick="changecolor()">--></button><br>
<p id="colorname">default</p>
<p id="soundtoggletext">Disable sounds<input type="checkbox" id="soundtoggle"></p>
<p id="vibrationtoggletext">Disable vibration<input type="checkbox" id="vibrationtoggle"></p>
<button onclick="closesettings()">back to game</button>
</center>
</div>
<img id="img">
<script src="script.js"> </script>
</body>
</html>