-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (29 loc) · 1.09 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="css.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-scrollTo/1.4.3/jquery.scrollTo.min.js"></script>
<script src="raw-elevator.js"></script>
</head>
<body>
<div class="box">
<div class="dashboard">
<div id="floor-number">1</div>
<div class="indicators">
<div id="up" class="indicator"></div>
<div id="down" class="indicator" ></div>
</div>
</div>
<div class="clr"></div>
<div class="floor_button">
<button floor-number="1" class="part">1</button>
<button floor-number="2" class="part">2</button>
<button floor-number="3" class="part">3</button>
<button floor-number="4" class="part">4</button>
</div>
</div>
</body>
</html>