-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (64 loc) · 2.59 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/fonts.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="css/las.thit.home.css" media="screen" title="no title" charset="utf-8">
<title>天海信息科技</title>
</head>
<body onload="load()">
<header>
<div class="bg"></div>
<img src="img/logo.svg" alt="Tianhai" class="thit-logo" style="opacity: 0;">
<h2 class="secondary-heading" style="opacity: 0;">天海信息科技</h2>
<a class="btn btn-primary" style="opacity: 0;" href="#about">了解我们</a>
</header>
<article id="about" style="opacity: 0;">
<h1>这个团队</h1>
<p>团队的前身是一群中学生的开发兴趣小团队,随着大家的升学和发展,这个团队也成为了一个研究软件开发、网络运营、服务器维护的一个团队。</p>
</article>
<blockquote style="opacity: 0;">
年轻的我们常常有一些疯狂的想法,并试着去实现。
</blockquote>
<article class="reverse" id="profile" style="opacity: 0;">
<h1>项目们</h1>
<h2>OI in Hand <small>(已停止维护)</small></h2>
<p>作为 OI 界的搜索引擎,方便了广大信息学竞赛选手查题、看题。</p>
<h2>Tianhai Network</h2>
<p>天海计算机网。</p>
<h2>各种小工具</h2>
<p>还有各种方便好用的小工具,有些东西可能已经不再维护,但是的确挺好用的。</p>
</article>
<footer style="opacity: 0;">
<p>
Copyright 2013-2020 Tianhai InfoTech, 2008-2016 L&S Team. All rights reserved.
<br /><a style="text-decoration: none; color: #2196f3;" href="http://www.miit.gov.cn">浙ICP备15007961号-1</a>
</p>
</footer>
<script charset="utf-8">
function load() {
setTimeout(function() {
document.getElementsByClassName('thit-logo')[0].style.opacity = 1;
}, 600);
setTimeout(function() {
document.getElementsByClassName('secondary-heading')[0].style.opacity = 1;
}, 1200);
setTimeout(function() {
document.getElementsByClassName('btn')[0].style.opacity = 1;
}, 1800);
setTimeout(function() {
document.getElementById('about').style.opacity = 1;
}, 2400);
setTimeout(function() {
document.getElementsByTagName('blockquote')[0].style.opacity = 1;
}, 3600);
setTimeout(function() {
document.getElementById('profile').style.opacity = 1;
}, 4000);
setTimeout(function() {
document.getElementsByTagName('footer')[0].style.opacity = 1;
}, 4800);
}
</script>
</body>
</html>