-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
418 lines (371 loc) · 20.1 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
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<!DOCTYPE html>
<html lang="cn">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>首页 - PixalOP</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.2/css/all.css"
/>
<!-- Google Fonts Roboto -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
/>
<!-- Dark MDB theme -->
<script type="text/javascript">
function setStyle(title) {
//预定义变量
var i, links;
//用DOM方法获得所有的link元素
links = document.getElementsByTagName("link");
for(i=0; links[i]; i++) {
//判断此link元素的rel属性中是否有style关键字
//即此link元素是否为样式表link
//同时判断此link元素是否含有title属性
if(links[i].getAttribute("rel").indexOf("style") != -1
&& links[i].getAttribute("title")) {
//先不管三七二十一把它设为disabled
links[i].disabled = true;
//再判断它的title中是否有我们指定的关键字
if(links[i].getAttribute("title").indexOf(title) != -1)
//如果有则将其激活
links[i].disabled = false;
}
}
}
</script>
<link rel="stylesheet" type="text/css"
title="主题A" href="css/mdb.min.css" />
<link rel="alternate stylesheet" type="text/css"
title="主题B" href="css/mdb.dark.min.css" />
<!-- Regular MDB theme -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<script type="text/javascript">
function changeStyle(t) {
$('link[title]').each(function() {
this.disabled = true;
this.disabled = this.title != t;
});
return false;
}
</script>
<header>
<!-- Intro settings -->
<style>
#intro {
/* Margin to fix overlapping fixed navbar */
margin-top: 58px;
}
@media (max-width: 991px) {
#intro {
/* Margin to fix overlapping fixed navbar */
margin-top: 45px;
}
}
</style>
<script type="text/javascript" src="head.js"></script>
<!-- Navbar -->
<br>
<br>
<!-- Start your project here-->
<!-- Section: Components -->
</header>
<main class="my-5">
<div class="container">
<hr class="my-5" />
<!--Section: Carousel-->
<div class="row">
<div class="col-md-8 mb-4">
<section>
<!-- Carousel wrapper -->
<div
id="carouselExampleCaptions"
class="carousel slide carousel-fade shadow-4-strong"
data-mdb-ride="carousel"
>
<!-- Indicators -->
<ol class="carousel-indicators">
<li
data-mdb-target="#carouselExampleCaptions"
data-mdb-slide-to="0"
class=""
></li>
<li
data-mdb-target="#carouselExampleCaptions"
data-mdb-slide-to="1"
class=""
></li>
<li
data-mdb-target="#carouselExampleCaptions"
data-mdb-slide-to="2"
class=""
></li>
<li
data-mdb-target="#carouselExampleCaptions"
data-mdb-slide-to="3"
class="active"
aria-current="true"
></li>
</ol>
<!-- Inner -->
<div class="carousel-inner">
<!-- Single item -->
<div class="carousel-item">
<img
src="https://mdbootstrap.com/img/Photos/Slides/img%20(15).jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>关于Pixal OJ</h5>
<p>
Pixal OJ 由 lijunhao2023 搭建,旨在提供优质的题目,快捷的服务。
</p>
</div>
</div>
<!-- Single item -->
<div class="carousel-item">
<img
src="https://mdbootstrap.com/img/Photos/Slides/img%20(22).jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Pixal Cloud</h5>
<p>
在云端安全、永久地储存你的文件。
</p>
</div>
</div>
<!-- Single item -->
<div class="carousel-item">
<img
src="https://mdbootstrap.com/img/Photos/Slides/img%20(23).jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>我们使用Material Design</h5>
<p>
让网站变得生动、丝滑。
</p>
</div>
</div>
<div class="carousel-item active">
<img
src="https://www.apple.com/v/apple-events/home/s/images/overview/hero__d6adldydsqye_large_2x.jpg"
class="d-block w-100"
alt="..."
/>
<div class="carousel-caption d-none d-md-block">
<h5>Apple Event</h5>
<p>
Watch the event on 9/14September 14th at 10 a.m. PDT.
<br>
<a href="https://www.apple.com/apple-events/">Learn More</a>
</p>
</div>
</div>
</div>
<!-- Inner -->
<!-- Controls -->
<a
class="carousel-control-prev"
href="#carouselExampleCaptions"
role="button"
data-mdb-slide="prev"
>
<span
class="carousel-control-prev-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Previous</span>
</a>
<a
class="carousel-control-next"
href="#carouselExampleCaptions"
role="button"
data-mdb-slide="next"
>
<span
class="carousel-control-next-icon"
aria-hidden="true"
></span>
<span class="visually-hidden">Next</span>
</a>
</div>
<!-- Carousel wrapper -->
</section>
<!--Section: Carousel-->
</div>
<div class="col-md-4 mb-4">
<!--Section: Summary-->
<section>
<div class="card">
<div class="card-header bg-white text-center py-3">
<h5 class="mb-0 fw-bold">Board</h5>
</div>
<div class="card-body">
<ul>
<li><strong><a href="https://south-gooseberry-b22.notion.site/b63b3b069a374e02bd32f3e7e32ec9e4?v=2ff3a4d1eeeb4c74bf92c583854a317d">Pixal Roadmap</a></strong></li>
<li><a href="https://join.slack.com/t/w1630686246-m1h929019/shared_invite/zt-v4yjpvhz-wP4fZnyA0Vrfr2bVqzljKw">
加入讨论组
</a>
</li>
<li>
<a href="https://oj.upan.ink" target="" rel="nofollow" >OneOJ</a></li>
</ul>
</div>
<div class="card-footer bg-white d-flex justify-content-between py-3">
<strong><div align='center'><img src='http://www.hit-counts.com/counter.php?t=MTQ1OTMzMg==' border='0' alt='professional logo design'></div></strong>
</div>
</div>
</section>
<!--Section: Summary-->
</div>
</div>
</section>
<!--Section: forms-->
<hr class="my-5" />
<section>
<div class="text-center">
<h4><strong>最近讨论</strong></h4>
</div>
<!--Grid row-->
<div class="row">
<!--Grid column-->
<div class="col-lg-4 col-md-12 mb-4">
<div class="card mb-4">
<div class="card-body">
<h5 class="card-title">PixalOJ版本号解释</h5>
<p class="card-text">
解释PixalOJ版本的命名规则。
</p>
<a href="https://lijunhao2023.blog.luogu.org/PixalOJ-version-explain"><button type="button" class="btn btn-primary">
进一步了解
</button>
</a>
</div>
</div>
<div class="card bg-dark text-white shadow-1-strong">
<img
src="https://mdbootstrap.com/img/Photos/Horizontal/Nature/4-col/img%20(55).jpg"
class="card-img"
alt="..."
/>
<div class="card-img-overlay">
<h5 class="card-title">广告位</h5>
<p class="card-text">
让人人都看到你!<br>
在洛谷私信联系lijunhao2023,向全世界展示你。
</p>
<p class="card-text">2020.8.31</p>
</div>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4">
<div class="card">
<div
class="bg-image hover-overlay ripple"
data-mdb-ripple-color="light"
>
<img
src="https://mdbootstrap.com/img/new/standard/nature/111.jpg"
class="img-fluid"
/>
<a href="#!">
<div
class="mask"
style="background-color: rgba(251, 251, 251, 0.15)"
></div>
</a>
</div>
<div class="card-body">
<h5 class="card-title">算法大汇总</h5>
<p class="card-text">
tuxuanming2024写的算法汇总。
</p>
<a href="https://www.luogu.com.cn/blog/txm2024/suan-fa-da-hui-zong" class="btn btn-primary">前往查看</a>
</div>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4">
<div class="card text-center mb-4">
<div class="card-header bg-white">Featured</div>
<div class="card-body">
<h5 class="card-title">更新日志</h5>
<p class="card-text">
让你了解我们每天的工作情况。
</p>
<a href="https://lijunhao2023.blog.luogu.org/pixaloj-release-notes" class="btn btn-primary">进一步了解</a>
</div>
<div class="card-footer bg-white text-muted">2021.8.31</div>
</div>
<div class="card mb-3" style="max-width: 540px">
<div class="row g-0">
<div class="col-md-4">
<img
src="https://mdbcdn.b-cdn.net/wp-content/uploads/2020/06/vertical.jpg"
alt="..."
class="img-fluid"
/>
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">这里是PixalOJ</h5>
<p class="card-text">
为你提供优质的题目。
</p>
<p class="card-text">
<small class="text-muted"
>Last updated 3 mins ago</small
>
</p>
</div>
</div>
</div>
</div>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</section>
<!--Section: Cards-->
<section>
<!-- begin wwww.htmlcommentbox.com -->
<div id="HCB_comment_box">
Pixal 动态正在加载。。。</div>
<link rel="stylesheet" type="text/css" href="https://www.htmlcommentbox.com/static/skins/bootstrap/twitter-bootstrap.css?v=0" />
<script type="text/javascript" id="hcb"> /*<!--*/
if(!window.hcb_user){hcb_user={};} (function(){var s=document.createElement("script"), l=hcb_user.PAGE || (""+window.location).replace(/'/g,"%27"), h="https://www.htmlcommentbox.com";s.setAttribute("type","text/javascript");s.setAttribute("src", h+"/jread?page="+encodeURIComponent(l).replace("+","%2B")+"&mod=%241%24wq1rdBcg%24UJCwXmNjnzVaUxn1Dy29K."+"&opts=16798&num=10&ts=1633844055013");if (typeof s!="undefined") document.getElementsByTagName("head")[0].appendChild(s);})();
/*-->*/
</script>
<!-- end www.htmlcommentbox.com -->
</section>
</main>
<footer class="">
<script type="text/javascript" src="bottom.js"></script>
</footer>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript">
</script>
</body>
</html>