-
Notifications
You must be signed in to change notification settings - Fork 0
/
library-result.html
41 lines (38 loc) · 1.17 KB
/
library-result.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
<!DOCTYPE html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<title>图书馆</title>
<link rel="stylesheet" type="text/css" href="styles/lib-result.css">
</head>
<body>
<section class="loading">
<div class="load-origin">
<img src="images/loading.gif">
<p>正在加载中</p>
</div>
<div class="load-info">
<span></span>
<p></p>
</div>
</section>
<header>
<a href="javascript:;">返回</a>
<span>图书馆</span>
</header>
<section class="lib-main">
<!-- <nav class="search">
<input type="text" id="user-input">
</nav> -->
<nav class="search">
<input type="text" id="user-input">
<span class="hint-focus"></span>
<i></i>
</nav>
<section class="book-result"></section>
</section>
<script type="text/javascript" src="scripts/dist/lib/requirejs.js"></script>
<script type="text/javascript" src="scripts/dist/src/lib-result.js"></script>
</body>
</html>