-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (30 loc) · 970 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<title>Hello World</title>
</head>
<body>
<button onclick="alert('click')">Click me</button>
<div id="map-canvas"></div>
<script type="text/javascript" src="cordova.js"></script>
</body>
<style>
html, body{
width:100%;
height: 100%;
margin:20px;
padding:0;
}
#map-canvas{
height:80%;
width:100%;
background:blue;
}
button{
height:100px;
}
</style>
</html>