-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (138 loc) · 5.65 KB
/
index.html
File metadata and controls
148 lines (138 loc) · 5.65 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
<!DOCTYPE HTML>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Lyn" />
<meta http-equiv="content-type" content="text/html;" />
<meta name="description" content="tcirc42th Website" />
<meta name="keywords" content="tcirc" />
<base href="" target="_self" />
<title>TCIRC42nd</title>
<script src="js/jquery.min.js"></script>
<script src="js/jquery.dropotron.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-wide.css" />
</noscript>
<link
rel="icon"
href="images/icon.ico"
id="icon"
/>
</head>
<body>
<!-- Wrapper -->
<div class="wrapper style1">
<!-- Header -->
<div id="header" class="skel-panels-fixed">
<div id="logo">
<h1><a href="index.html">Tcirc42nd</a></h1>
<span class="tag">'s website</span>
</div>
<nav id="nav">
<ul>
<li class="active"><a href="index.html">首頁</a></li>
<li><a href="https://www.instagram.com/tcirc_42nd/">關於我們</a></li>
<li><a href="activity.html">社團活動</a></li>
<li><a href="https://judge.tcirc.tw/">Online Judge</a></li>
</ul>
</nav>
</div>
<!-- Banner -->
<div id="banner" class="container">
<section>
<p id="text1" style="font-size: 50px; margin: 0;"><b></b><span class="typing-cursor">|</span></p>
<p id="text2" style="font-size: 30px; margin: 10px 0;"><b></b><span class="typing-cursor" style="display: none;">|</span></p>
<br>
<a href="https://discord.gg/ktTjDN24fz" class="button medium">Discord</a>
<a href="https://www.instagram.com/tcirc_42nd/" class="button medium">Instagram</a>
<a href="https://www.facebook.com/tcfshcirc" class="button medium">Facebook</a>
</section>
</div>
<!-- Extra -->
<div id="extra">
<div class="container">
<div class="row no-collapse-1">
<section class="4u"> <a href="#" class="image featured"><img src="images/me.png" alt=""></a>
<div class="box">
<p><b>社長 楊佳泰</b></p>
<a href="https://www.instagram.com/maoguayang/" class="button">Follow</a> </div>
</section>
<section class="4u"> <a href="#" class="image featured"><img src="images/me.png" alt=""></a>
<div class="box">
<p><b>副社長/教學 葉俊儀</b></p>
<a href="https://www.instagram.com/asqwqas_/" class="button">Follow</a> </div>
</section>
<section class="4u"> <a href="#" class="image featured"><img src="images/me.png" alt="" ></a>
<div class="box">
<p><b>網管/公關aka小編 黃柏文</b></p>
<a href="https://www.instagram.com/benson_1522/" class="button">Follow</a> </div>
</section>
</div>
<div class="row no-collapse-1">
<section class="4u"> <a href="#" class="image featured"><img src="images/me.png" alt=""></a>
<div class="box">
<p><b>網管/文書 林余安</b></p>
<a href="https://www.instagram.com/yu_an_l6969/" class="button">Follow</a> </div>
</section>
<section class="4u"> <a href="#" class="image featured"><img src="images/me.png" alt=""></a>
<div class="box">
<p><b>教學長 洪鈞睿</b></p>
<a href="https://www.instagram.com/koukirocks/" class="button">Follow</a> </div>
</section>
<section class="4u"> <a href="#" class="image featured"><img src="images/me.png" alt=""></a>
<div class="box">
<p><b>總務/教學 洪仕軒</b></p>
<a href="https://www.instagram.com/teddy_bear_0201/" class="button">Follow</a> </div>
</section>
</div>
</div>
</div>
<!-- Previous Websites Section -->
<div id="previous-websites" class="container">
<div class="row">
<div class="12u">
<h2 style="text-align: center; margin: 20px 0; font-size: 40px;"><b>歷屆網站</b></h2>
<br>
<div style="display: flex; justify-content: center; gap: 20px; margin-bottom: 30px;">
<a href="https://tcirc.tw/old/41/index.html" class="button">41st</a>
<a href="https://tcirc.tw/old/40/index.html" class="button">40th</a>
<a href="https://tcirc.tw/old/39/index.html" class="button">39th</a>
<a href="https://tcirc.tw/old/38/index.html" class="button">38th</a>
</div>
</div>
</div>
</div>
</body>
<script>
function typeWriter(text, elementId, speed, callback) {
const element = document.querySelector(elementId + ' b');
let i = 0;
function type() {
if (i < text.length) {
element.textContent += text.charAt(i);
i++;
setTimeout(type, speed);
} else if (callback) {
if (elementId === '#text1') {
document.querySelector(elementId + ' .typing-cursor').style.display = 'none';
document.querySelector('#text2 .typing-cursor').style.display = 'inline';
}
callback();
}
}
type();
}
window.onload = function() {
typeWriter('歡迎來到中一中電研OwOb', '#text1', 100, function() {
setTimeout(function() {
typeWriter('這裡有一群愛寫程式的人', '#text2', 100);
}, 500);
});
};
</script>
</html>