-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.33 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>main</title>
<link rel="stylesheet" href="./mdui/css/mdui.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body id="body">
<div class="mdui-tab mdui-tab-full-width" mdui-tab>
<a href="#tab0" class="mdui-ripple" id="tab-0">
<i class="mdui-icon material-icons">search</i>
<label>搜索</label>
</a>
<a href="#tab1" class="mdui-ripple" id="tab-1">
<i class="mdui-icon material-icons">chrome_reader_mode</i>
<label>稍后读</label>
</a>
</div>
<div id="tab0" style="display:none;">
<div style="margin-top: 10%; width: 42%;" class="main-center">
<strong id="logo"
style="position:absolute; font-size: 41px; color: purple; z-index: 10; margin-left: 10px; margin-top: 4px;">G</strong>
<input class="main-search" id="search" placeholder="..." autocomplete="off"/>
<ul class="main-data-list" id="dataList">
</ul>
</div>
</div>
<div id="tab1" style="display:none;">
<table style="width: 100%;" id="todo-table">
</table>
</div>
<script src="./mdui/js/mdui.min.js"></script>
<script src="key.js"></script>
<script src="data.js"></script>
<script src="main.js"></script>
</body>
</html>