-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
117 lines (93 loc) · 4.41 KB
/
about.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>HELP</title>
<link rel="icon" href="img/fav.png" type="image/x-icon">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="ionicons/css/ionicons.min.css" rel="stylesheet">
<!-- main css -->
<link href="css/style.css" rel="stylesheet">
<!-- modernizr -->
<script src="js/modernizr.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="pre-container">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
</div>
<!-- end Preloader -->
<div class="container-fluid">
<!-- box header -->
<header class="box-header">
<div class="box-logo">
<a href="index.html"><img src="img/logo.png" width="80" alt="Logo"></a>
</div>
<!-- box-nav -->
<a class="box-primary-nav-trigger" href="index.html">
<span class="box-menu-text">Home</span><span class="box-menu-icon"></span>
</a>
<!-- box-primary-nav-trigger -->
</header>
<!-- end box header -->
</div>
<!-- Top bar -->
<div class="top-bar">
<h1>HELP</h1>
</div>
<!-- end Top bar -->
<!-- Main container -->
<div class="container main-container clearfix">
<h3 class="uppercase">数据库实体</h3>
<div class="h-30"></div>
<p> 酶的实体包含两个属性:酶的名字以及酶的ECnumber。</p>
<p> 通路的实体包含两个属性:通路的名字以及通路的dblink,通路的dblink会连接到KEGG、biocyc等大型数据库中,会对于该通路有更详细的介绍。</p>
<p> 反应的实体包括两个属性:反应的化学方程式、反应所属的种类以及相关反应的dblink。</p>
<div class="h-30"></div>
<h3 class="uppercase">ER图</h3>
<div class="h-30"></div>
<img src="img/er.jpg" style="width: 50%" />
<h3 class="uppercase">使用说明</h3>
<div class="h-30"></div>
<p>用户点击进入页面:</p>
<p>(1)搜索</p>
<p> 完成search by和require for两个条件选择之后,输入想要搜索的词条,点击提交。</p>
<p> 相关搜索结果会在搜索框下方“information will be listed here”处呈现。</p>
<p> 如果输入非法或未正确完成条件选择,会有“please select the query data type”的提示语句出现在搜索框下方。</p>
<p>(2)跳转相关链接</p>
<p> 用户可以点击首页的相关链接跳转到其他数据库介绍,了解背景及数据来源。</p>
<p>(3)查看使用说明</p>
<p> 用户可以点击右上角的“help”按钮跳转至about.html页面,阅览使用说明。</p>
<p> 如果想返回首页,点击about.html页面右上角“home”按钮即可。</p>
<div class="h-30"></div>
<h3 class="uppercase">使用示例</h3>
<div class="h-30"></div>
<img src="img/eg.png" style="width: 50%" />
</div>
<!-- end Main container -->
<!-- jQuery -->
<script src="js/jquery-2.1.1.js"></script>
<!-- plugins -->
<script src="js/bootstrap.min.js"></script>
<script src="js/menu.js"></script>
<script src="js/animated-headline.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<!-- custom script -->
<script src="js/custom.js"></script>
</body>
</html>