-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (35 loc) · 2.04 KB
/
Copy pathindex.html
File metadata and controls
41 lines (35 loc) · 2.04 KB
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
<!DOCTYPE HTML>
<html style="height: 100%;">
<head>
<title>hello</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="mystyle.css">
<script src="test.js"></script>
</head>
<body style="background-color: rgb(206, 206, 206); height: 100%; margin:0px;overflow: hidden;" draggable="false" onload="OnLoad();">
<div id="mainWindow" draggable="false" >
<div id="componentList" draggable="false" class="window" style="margin:2px;">
<div class="window componentListItem" draggable="false" onmousedown="ComponentDragStart(event)" component="road"></div>
<div class="window componentListItem" draggable="false" onmousedown="ComponentDragStart(event)" component="sidewalk"></div>
<div class="window componentListItem" draggable="false" onmousedown="ComponentDragStart(event)" component="bollard"></div>
<div class="window componentListItem trashcan" onmouseenter="EnterTrashcan()" onmouseleave="LeaveTrashcan()"></div>
</div>
<div id="editor" class="window" style="margin:2px;">
<div id="stopSection" class="unusedSection roadScope" style="background-color: gray;"></div>
<div id="intermidiateSection" class="unusedSection roadScope" style="background-color:dimgray;"></div>
<div id="land" class="roadScope"></div>
</div>
</div>
<div id="data" style="display:none;">
<div id="hitboxTemplate" class="hitbox" onmouseenter="EnterHitbox(event);" onmouseleave="LeaveHitbox(event);"></div>
<div id="emptyRoadComponentTemplate" class="emptyRoadComponent"></div>
<div id="roadComponentTemplate" class="roadComponent" draggable="false" onmousedown="ComponentDragStart(event)" ></div>
<div id="sidewalkTemplate" class="sidewalk component"></div>
<div id="bollardTemplate" class="bollard component"></div>
<div id="roadTemplate" class="road component"></div>
<div id="rangeSlider" class="rangeSlider" draggable="false" onmousedown="RangeSlider_Start(event)"></div>
</div>
</body>
</html>