-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindicator.html
More file actions
39 lines (31 loc) · 1.01 KB
/
indicator.html
File metadata and controls
39 lines (31 loc) · 1.01 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
<!DOCTYPE HTML>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<title>ixd-indicator</title>
<link rel="stylesheet" type="text/css" href="/ixd/b/base.css" />
<link rel="stylesheet" type="text/css" href="/ixd/css/indicator.css" />
<script type="text/javascript" src="/ixd/b/base.js"></script>
<script type="text/javascript" src="/ixd/js/indicator.js"></script>
</head>
<body>
<div id="bd-top">
</div>
<div id="bd-middle">
<h2>indicator</h2>
<!-- 一个元素下,不能有2个 indicator 元素,故用span隔开 -->
<span>
<input type="button" id="pnew-submit" value="创建ok" />
<span class="indicator" title="创建成功"></span>
</span>
<div class="sep"></div>
<span>
<input type="button" id="pnew-submit-error" value="创建error" />
<span class="indicator" title="创建失败"></span>
</span>
</div>
<div id="bd-bottom">
<p>dodoma 版权所有</p>
</div>
</body>
</html>