-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathResearch.html
156 lines (147 loc) · 3.35 KB
/
Research.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Research</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
a{
text-decoration: none;
}
header{
width: 100%;
height: 50px;
background: #888;
position: fixed;
padding: 0 20%;
box-sizing: border-box;
}
header .members_tit{
width: 20%;
height: 50px;
float: left;
text-align: center;
line-height: 50px;
font-size: 18px;
}
article{
width: 1200px;
}
article .researchList{
width: 350px;
margin: 10px 25px;
height: 250px;
float: left;
}
article .researchList img{
width: 350px;
height: 100px;
}
article .researchList .tit{
width: 350px;
height: 20px;
}
article .researchList .brief{
width: 350px;
word-wrap : break-word ;
}
.members_tit1:hover{
background: #000;
color: #fff;
}.members_tit2:hover{
background: #000;
color: #fff;
}
.members_tit3:hover{
background: #000;
color: #fff;
}
.members_tit4:hover{
background: #000;
color: #fff;
}
.members_tit5:hover{
background: #000;
color: #fff;
}
</style>
</head>
<body>
<header>
<div class="members_tit members_tit1">Home</div>
<div class="members_tit members_tit2">Research</div>
<div class="members_tit members_tit3">Publications</div>
<div class="members_tit members_tit4">Databases</div>
<div class="members_tit members_tit5">Members</div>
</header>
<article>
<div style="width: 1200px;height: 100px;"></div>
<div class="researchList">
<img src="../img/chenli.jpg" />
<p class="tit">title</p>
<p class="brief">brief</p>
<a href="#">join</a>
</div>
<div class="researchList">
<img src="../img/chenli.jpg" />
<p class="tit">title</p>
<p class="brief">brief</p>
<a href="#">join</a>
</div>
<div class="researchList">
<img src="../img/chenli.jpg" />
<p class="tit">title</p>
<p class="brief">brief</p>
<a href="#">join</a>
</div>
<div class="researchList">
<img src="../img/chenli.jpg" />
<p class="tit">title</p>
<p class="brief">brief</p>
<a href="#">join</a>
</div>
<div class="researchList">
<img src="../img/chenli.jpg" />
<p class="tit">title</p>
<p class="brief">brief</p>
<a href="#">join</a>
</div>
<div class="researchList">
<img src="../img/chenli.jpg" />
<p class="tit">title</p>
<p class="brief">brief</p>
<a href="#">join</a>
</div>
<div class="researchList">
<img src="../img/chenli.jpg" />
<p class="tit">title</p>
<p class="brief">brief</p>
<a href="#">join</a>
</div>
<div class="researchList">
<img src="../img/chenli.jpg" />
<p class="tit">title</p>
<p class="brief">brief</p>
<a href="#">join</a>
</div>
</article>
<script type="text/javascript">
var header_list_tit = document.getElementsByClassName('members_tit');
header_list_tit[2].onclick = function(){
window.location.href = "Publications.html";
}
header_list_tit[0].onclick = function(){
window.location.href = "../index.html";
}
header_list_tit[3].onclick = function(){
window.location.href = "Database.html";
}
header_list_tit[4].onclick = function(){
window.location.href = "Members.html";
}
</script>
</body>
</html>