-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (34 loc) · 853 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>PixiJs</title>
<script src="./lib/pixi.js"></script>
<script src="./lib/keyBoardLisener.js"></script>
</head>
<body>
<script src="./lib/src.js"></script>
<div class="hidden_back">
<input id="commandInput" class="hidden">
</div>
<style>
* {
padding: 0;
margin: 0;
}
</style>
<style>
.hidden_back {
background-color: black;
z-index: 2;
}
.hidden {
background-color: transparent;
border: hidden;
outline: none;
z-index: 2;
position: absolute;
}
</style>
</body>
</html>