-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (27 loc) · 985 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
<head>
<title>VisonVoice</title>
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="icon" href="./favicon.ico">
<link rel="stylesheet" href="index.css">
<link rel="manifest" href="manifest.json" />
</head>
<body>
<img id="my-image" src="favicon.png" alt="favicon" />
<div class="button-area">
<!-- 导航栏和两个按钮 -->
<div class="navtog" id="navtog">菜单</div>
<div class="dropdown">
<button class="button" id="install-button">安装</button>
<button class="button" id="camera-button">智慧拍照</button>
<button class="button" id="env-button">环境识别</button>
</div>
<!-- iframe -->
<iframe allow="camera *;" id="nestedWebpage"></iframe>
<!-- 导航栏的script响应 -->
<!-- 点击使iframe的src改变 -->
<script src="./index.js"></script>
</div>
<script src="./sw.js"></script>
<script type="module" src="app.js"></script>
</body>