-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 836 Bytes
/
index.html
File metadata and controls
32 lines (31 loc) · 836 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Gravity Game</title>
<link rel="stylesheet" href="./style.css">
<script src="https://code.jquery.com/jquery-2.1.0.js"></script>
</head>
<body>
<iframe id="game" src="./game.html" frameborder="0"></iframe>
<div id="info">
Gravity Game. Side project developed by <a href="mailto:gravity.game.13@gmail.com">Antoine Jackson</a>.
<div>
Feel free to send feedback to <a href="mailto:gravity.game.13@gmail.com">gravity.game.13@gmail.com</a>.
</div>
Hide this panel : hit the + key
</div>
</body>
<script>
$(document).ready(function () {
$("body").keydown(function (e) {
if (e.keyCode == 107) {
if ($("#game").css("height") == "100%") {
$("#game").css("height", "80%");
} else {
$("#game").css("height", "100%");
}
}
});
});
</script>
</html>