-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (50 loc) · 1.83 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>T Quest</title>
<script src="jquery.min.js"></script>
<script src="jquery-ui.min.js"></script>
<script src="underscore-min.js"></script>
<link rel="stylesheet" type="text/css" href="quest.css">
<link rel="stylesheet" type="text/css" href="theme/jquery-ui.min.css">
<link rel="stylesheet" type="text/css" href="theme/jquery-ui.theme.min.css">
<link rel="stylesheet" type="text/css" href="theme/jquery-ui.structure.min.css">
</head>
<body>
<div id="playGround">
<div id="bigT">
<div class="picture"></div>
</div>
<div id="T2" class="Ts">
<div class="picture"></div>
<div class="rotate"></div>
</div>
<div id="T3" class="Ts">
<div class="picture"></div>
<div class="rotate"></div>
</div>
<div id="T4" class="Ts">
<div class="picture"></div>
<div class="rotate"></div>
</div>
<div id="T5" class="Ts">
<div class="picture"></div>
<div class="rotate"></div>
</div>
</div>
<div id="welcome" title="Welcome to T-Quest!">
<p>Drag shapes around to form a T shape. <br>
Left click the arrows to rotate left, <br>
Right click them to rotate right, <br>
Double click them to flip. <br>
Simple? Not that fast, it is harder than you might think.</p>
<p>Have fun!</p>
</div>
<div id="win" title="Win!">
<p>You won!</p>
<p><a>Play again?</a></p>
</div>
<script src="quest.js"></script>
</body>
</html>