-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathactive.html
More file actions
386 lines (364 loc) · 14.6 KB
/
active.html
File metadata and controls
386 lines (364 loc) · 14.6 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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<!--Originally designed by @lin714093880-->
<!--Revise by @Clarence-->
<!DOCTYPE html>
<html>
<head>
<title>成都理工大学信息安全协会</title>
<meta charset="UTF-8">
<!-- <link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/semantic-ui/2.2.13/semantic.min.css"> -->
<link rel="stylesheet" type="text/css" href="css/semantic.min.css">
<style type="text/css">
/*设置 a 标签的css样式*/
.page-normal a{
border: 1px solid #ff6500;
padding: 5px 7px;
color: #ff6500;
margin-left: 20px;/*设置标签 a 之间的间隔*/
text-decoration: none;/*去除页码数字下面的下划线*/
}
/*设置鼠标经过时 a 标签的css样式*/
.page-normal a:hover{
background-color: #ffbe94;
}
/*设置整个div的css样式,该样式主要用于设置网页内的省略号 …… 的样式,并且同时设置内容居中显示*/
.page-normal{
color: #ff6500;
text-align: center;
}
/*设置当前页面的css样式*/
.page-normal .page-current{
color: #ffffff;
background-color: #ff6500;
}
/*设置左单括号 < 的css样式*/
.page-normal .page-prev{
color: #ffe3c6;
}
/*进行代码优化,将不同css样式中共有的属性放在一起,有助于提高运行效率*/
.page-normal a, .page-normal a:hover, .page-normal .page-prev, .page-normal .page-current{
border: 1px solid #ff6500;
padding: 5px 7px;
}
.hidden.menu {
display: none;
}
.masthead.segment {
min-height: 150px;
padding: 1em 0em;
}
.masthead .logo.item img {
margin-right: 1em;
}
.masthead .ui.menu .ui.button {
margin-left: 0.5em;
}
.masthead h1.ui.header {
margin-top: 1em;
margin-bottom: 0em;
font-size: 5em;
font-weight: normal;
}
.masthead h2 {
font-size: 1.7em;
font-weight: normal;
}
.ui.vertical.stripe {
padding: 8em 0em;
}
.ui.vertical.stripe h3 {
font-size: 2em;
}
.ui.vertical.stripe .button + h3,
.ui.vertical.stripe p + h3 {
margin-top: 3em;
}
.ui.vertical.stripe .floated.image {
clear: both;
}
.ui.vertical.stripe p {
font-size: 1.33em;
}
.ui.vertical.stripe .horizontal.divider {
margin: 3em 0em;
}
.quote.stripe.segment {
padding: 0em;
}
.quote.stripe.segment .grid .column {
padding-top: 5em;
padding-bottom: 5em;
}
.footer.segment {
padding: 5em 0em;
}
.secondary.pointing.menu .toc.item {
display: none;
}
@media only screen and (max-width: 700px) {
.ui.fixed.menu {
display: none !important;
}
.secondary.pointing.menu .item,
.secondary.pointing.menu .menu {
display: none;
}
.secondary.pointing.menu .toc.item {
display: block;
}
.masthead.segment {
min-height: 350px;
}
.masthead h1.ui.header {
font-size: 2em;
margin-top: 1.5em;
}
.masthead h2 {
margin-top: 0.5em;
font-size: 1.5em;
}
}
img{width: 271px;height: 148px;}
</style>
<script>
function showpage(page){
for(var i=1;i<=3;i++) {
if (page==i){
document.getElementById("page"+i).style.display="block";
} else {
document.getElementById("page"+i).style.display="none";
}
}
}
</script>
</head>
<body>
<div class="ui large top fixed hidden menu" id="#top">
<div class="ui container">
<a class="active item">动态</a>
<a class="active item">活动</a>
<a class="active item">比赛</a>
<a class="active item">成员</a>
<a class="active item">制度</a>
<a class="active item">荣誉</a>
<div class="right menu">
<div class="item">
<a class="ui button" target="_blank" href="http://cdutsec.gitee.io/blog/">Dino blog</a>
</div>
</div>
</div>
</div>
<div class="pusher" >
<div class="ui inverted vertical masthead center aligned segment">
<div class="ui container">
<div class="ui large secondary inverted pointing menu">
<a class="item" href="index.html">首页</a>
<a class="active item" href="../../active.html">活动</a>
<a class="item" href="../../competition.html">比赛</a>
<a class="item" href="../../member.html">成员</a>
<a class="item" href="../../system.html">制度</a>
<a class="item" href="../../honor.html">荣誉</a>
<div class="right item">
<a class="ui inverted button" target="_blank" href="http://cdutsec.gitee.io/blog/">Dino blog</a>
</div>
</div>
</div>
<div class="ui text container">
<h1 style="font-size: 2.5em;">成都理工大学信息安全协会</h1>
</div>
</div>
<div style="text-align: center;">
<h1>活动</h1>
<div id="page1" style="display:block;">
<div class="ui four column doubling stackable grid container" id="img-grid" style="margin: 10px">
<div class="column">
<a href="article/2021.10.13/index.html" style="text-decoration: none;"target="_blank">
<img src="article/2021.10.13/example.png" class="ui rounded image">
<h4>2021网络空间安全宣传周</h4>
</a>
</div>
<div class="column">
<a href="article/2021.10.23/index.html" style="text-decoration: none;"target="_blank">
<img src="article/2021.10.23/1.jpg" class="ui rounded image">
<h4>网络空间安全宣传周知识讲作</h4>
</a>
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<div class="column">
<!-- <img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2> -->
</div>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
<h3></h3>
<h3></h3>
<h3></h3>
<div class="page-normal">
<span class="page-current">1</span>
<a href="javascript:showpage(2);">2</a>
<a href="javascript:showpage(3);">3</a>
</div>
</div>
<div id="page2" style="display:none;">
<div class="ui four column doubling stackable grid container" id="img-grid" style="margin: 10px">
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
<div class="column">
<img src="img/example.png" class="ui rounded image">
<h2>活动xxxxxxx</h2>
</div>
</div>
<h3></h3>
<h3></h3>
<h3></h3>
<div class="page-normal">
<a href="javascript:showpage(1);">1</a>
<span class="page-current">2</span>
<a href="javascript:showpage(3);">3</a>
</div>
</div>
<div id="page3" style="display:none;">
<h3>这是第2种活动页面展示界面:文字加链接</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3>这是第3页的内容</h3>
<h3></h3>
<h3></h3>
<h3></h3>
<div class="page-normal">
<a href="javascript:showpage(1);">1</a>
<a href="javascript:showpage(2);">2</a>
<span class="page-current">3</span>
</div>
</div>
<div class="ui inverted vertical footer segment" style="background-color: rgb(143,0,11);">
<div class="ui container">
<div class="ui stackable inverted divided equal height stackable grid">
<div class="three wide column">
<h4 class="ui inverted header">官方网站</h4>
<div class="ui inverted link list">
<a href="http://www.cdut.edu.cn/" target="_blank" class="item">成都理工大学</a>
<a href="http://www.cist.cdut.edu.cn/" target="_blank" class="item">计算机与网络安全学院</a>
<a href="http://wxc.cdut.edu.cn/" target="_blank" class="item">网络与信息化处</a>
</div>
</div>
<div class="three wide column">
<h4 class="ui inverted header">分站</h4>
<div class="ui inverted link list">
<a href="http://cdutsec.gitee.io/blog/" class="item">信息安全协会博客</a>
</div>
</div>
<div class="seven wide column">
<h4 class="ui inverted header">2019-2021 © 成都理工大学信息安全协会</h4>
<p>By <a href="http://cdutsec.gitee.io/blog/" target="_blank">Dino</a>.</p>
<p>地址:成都理工大学成都校区网安楼209室</p>
<!-- <p><a href="http://beian.miit.gov.cn">蜀ICP备2021020791号</a></p> -->
</div>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function() {
$('.masthead').visibility({
once: false,
onBottomPassed: function() {
$('.fixed.menu').transition('fade in');
},
onBottomPassedReverse: function() {
$('.fixed.menu').transition('fade out');
}
});
});
</script>
</body>
</html>