-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 778 Bytes
/
index.html
File metadata and controls
41 lines (40 loc) · 778 Bytes
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>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<style>
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
#app {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
.map-wrapper {
position: relative;
width: 100%;
height: 100%;
}
.btn {
position: absolute;
z-index: 99;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div class="map-wrapper">
<button id="js_open" class="btn">打开框选</button>
<div id="app"></div>
<!-- <script src="./step_22_contextPad/index.js"></script> -->
</div>
</body>
</html>