-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
40 lines (35 loc) · 971 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,initial-scale=1.0,width=device-width"
/>
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<title>记事本</title>
<link rel="stylesheet" type="text/css" href="./css/api.css" />
<style type="text/css">
* {
margin: 0;
padding: 0;
}
</style>
</head>
<body class="wrap">
</body>
<script type="text/javascript" src="./script/api.js"></script>
<script type="text/javascript">
apiready = function () {
api.openFrame({
name: 'main',
url: 'html/main.html',
bounces: false,
rect: {
x: 0,
y: 0,
w: 'auto',
h: 'auto'
}
});
};
</script>
</html>