-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 1.27 KB
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Feng Shui</title>
<script src="./planck.min.js"></script>
<script src="./easeljs.min.js"></script>
<script src="core.js"></script>
<script src="furniture.js"></script>
<script src="constraint.js"></script>
</head>
<body onload="startGame();">
<span id="timer" style="font-size: 10px">0.0s</span>
<div style="text-align: center;">
<div style="margin-top: 0.5cm; margin-bottom: 1cm; font-size: 30px">This doesn't feel like home !</div>
I just arrived at the hotel, and this room doesn't feel like home at all !<br>
drag and drop objects to fix this !<br><br>
<canvas id="gameCanvas" width="500" height="500" style="border: 2px solid black;"></canvas><br>
<div id="objectives">
I want to sleep with my head to the North ! <span id="bednorth"></span> <span id="bnstatus"></span><br>
I want at least two big lamps next to my bed ! <span id="lamprox"></span> <span id="lpstatus"></span><br>
I want to work on the computer from a couch ! <span id="couprox"></span> <span id="cpstatus"></span><br>
My desk should be by the window ! <span id="wiprox"></span> <span id="wistatus"></span><br>
</div>
</div>
</body>
</html>