-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.html
273 lines (270 loc) · 13.4 KB
/
project.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
<!DOCTYPE html>
<html lang="zh-Hant-TW">
<head>
<!-- 網頁標題和語系 -->
<meta charset="UTF-8">
<!--手機版縮放-->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>KageRyo Developer</title>
<link rel="icon" type="img/icon" href="assets/img/favicon.ico">
<!-- 網頁資訊 -->
<meta name="description"
content="這裡是 KageRyo Developer 個人網站,我是來自臺灣的學生開發者,目前是大學生一枚,有空的時候會想一些小東西來做,基本上全部都會是開源的Repo,歡迎互相交流交流。 ヾ(*´∀ ˋ*)ノ">
<meta name="author" content="Chien-Hsun, Chang">
<meta property="og:title" content="KageRyo Developer">
<meta property="og:description"
content="這裡是 KageRyo Developer 個人網站,我是來自臺灣的學生開發者,目前是大學生一枚,有空的時候會想一些小東西來做,基本上全部都會是開源的Repo,歡迎互相交流交流。 ヾ(*´∀ ˋ*)ノ">
<meta property="og:image" content="https://kageryo.coderyo.com/assets/img/og.jpg">
<meta property="og:image:width" content="500">
<meta property="og:image:height" content="500">
<meta property="og:url" content="https://kageryo.coderyo.com">
<meta property="og:type" content="website">
<!-- 引入 CSS -->
<link rel="stylesheet" href="./assets/css/style.css">
<!-- 引入字型 -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap" rel="stylesheet" />
<!-- 套用 TocasUI -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tocas/4.2.5/tocas.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/tocas/4.2.5/tocas.min.js"></script>
</head>
<body>
<!-- 頂部列 -->
<div class="ts-app-topbar has-dark">
<!-- 頂部列左側 -->
<div class="start">
<a href="index.html" class="item is-text">KageRyo Developer</a>
</div>
<!-- 頂部列右側 -->
<div class="end">
<div class="ts-tab mobile:has-hidden">
<a href="index.html" class="item">首頁</a>
<a href="about.html" class="item">關於我</a>
<a href="project.html" class="item is-active">作品集</a>
<a href="contact.html" class="item">聯絡我</a>
</div>
<!-- 黑白色系切換 -->
<div class="ts-icon item is-sun-icon" id="mode-toggle" style="z-index: 9999;"></div>
<!-- 國家選擇選單 -->
<div class="ts-select mobile:is-hidden" data-dropdown="select" style="z-index: 9999;">
<div class="content">
<span class="ts-flag is-tw-flag"></span>
<div class="mobile:has-hidden">正體中文</div>
</div>
</div>
<div class="ts-dropdown" data-name="select" data-position="bottom-start" style="z-index: 9999;">
<button class="item is-selected">
<span class="ts-flag is-tw-flag"></span>
<div class="mobile:has-hidden">正體中文</div>
</button>
<button class="item unfinished-feature">
<span class="ts-flag is-america-flag"></span>
<div class="mobile:has-hidden">English</div>
</button>
<button class="item unfinished-feature">
<span class="ts-flag is-japan-flag"></span>
<div class="mobile:has-hidden">日本語</div>
</button>
</div>
<button class="mobile:ts-button mobile:is-icon" style="z-index: 9999;"
onclick="document.querySelector('.ts-app-drawer#mobile-menu').classList.toggle('is-visible')">
<span class="mobile:ts-icon mobile:is-bars-icon"></span>
</button>
</div>
</div>
<div class="ts-app-drawer is-right has-dark" id="mobile-menu" style="color:white;">
<div style="width:80%"></div>
<div class="content">
<div class="ts-app-sidebar" style="padding-top:20%;">
<div class="header ts-divider is-start-text">導航欄</div>
<a href="index.html" class="item is-indented">首頁</a>
<a href="about.html" class="item is-indented">關於我</a>
<a href="project.html" class="item is-active is-indented">作品集</a>
<a href="contact.html" class="item is-indented">聯絡我</a>
</div>
</div>
</div>
<!-- 穹頂 -->
<div class="ts-content is-tertiary is-vertically-padded">
<div class="ts-container">
<div class="ts-header is-huge is-heavy">Chien-Hsun, Chang</div>
<div class="ts-text is-secondary">Developer, Programmer, and Student@TAIWAN.</div>
</div>
</div>
<!-- 作品集 -->
<div class="ts-container has-top-spaced-large">
<!-- 精選專案 -->
<div class="ts-header is-big is-heavy has-bottom-spaced-small">精選專案</div>
<div class="ts-grid">
<div class="tablet+:column tablet+:is-4-wide mobile:ts-content">
<a href="https://github.com/KageRyo-Lab/ClassPractice" target="_blank" rel="noopener noreferrer"
class="no-underline">
<div class="ts-box">
<div class="ts-image">
<img src="./assets/img/watermirror.svg">
</div>
<div class="ts-content is-secondary">
<div class="ts-text is-description">KageRyo/WaterMirror</div>
<div class="ts-header is-truncated is-heavy">WaterMirror</div>
<div class="ts-text is-description text-overflow-ellipsis">💧Water Mirror: AI-powered Water Quality Analysis
</div>
</div>
</div>
</a>
</div>
<div class="tablet+:column tablet+:is-4-wide mobile:ts-content" style="width:100%;">
<a href="https://github.com/KageRyo/Bybit-Predict" target="_blank" rel="noopener noreferrer"
class="no-underline">
<div class="ts-box">
<div class="ts-image">
<img src="./assets/img/bybit.svg">
</div>
<div class="ts-content is-secondary">
<div class="ts-text is-description">KageRyo/Bybit-Predict</div>
<div class="ts-header is-truncated is-heavy">Bybit-Predict</div>
<div class="ts-text is-description text-overflow-ellipsis">使用 Python 和 Bybit 交易所 API
預測加密貨幣趨勢。Predict
cryptocurrency trends using Python and the Bybit exchange API.</div>
</div>
</div>
</a>
</div>
<div class="tablet+:column tablet+:is-4-wide mobile:ts-content" style="width:100%;">
<a href="https://github.com/KageRyo/Concentration" target="_blank" rel="noopener noreferrer"
class="no-underline">
<div class="ts-box">
<div class="ts-image">
<img src="./assets/img/concentration.svg">
</div>
<div class="ts-content is-secondary">
<div class="ts-text is-description">KageRyo/Concentration</div>
<div class="ts-header is-truncated is-heavy">Concentration</div>
<div class="ts-text is-description text-overflow-ellipsis">
這是一個簡單的記憶力翻牌小遊戲。在這個遊戲中,我們使用了Hololive的角色作為卡片圖案,讓您在挑戰記憶力的同時欣賞可愛的角色!</div>
</div>
</div>
</a>
</div>
<div class="tablet+:column tablet+:is-4-wide mobile:ts-content">
<a href="https://github.com/KageRyo/MyWebsite" target="_blank" rel="noopener noreferrer"
class="no-underline">
<div class="ts-box">
<div class="ts-image">
<img src="./assets/img/chienhsun.svg">
</div>
<div class="ts-content is-secondary">
<div class="ts-text is-description">KageRyo/MyWebsite</div>
<div class="ts-header is-truncated is-heavy">MyWebsite</div>
<div class="ts-text is-description text-overflow-ellipsis">我的個人網頁,在這裡探索更多新事物❤️</div>
</div>
</div>
</a>
</div>
</div>
<!-- GitHub 專案 -->
<div class="ts-header is-big is-heavy has-top-spaced-large">我在 GitHub 上的開源專案</div>
<div class="ts-tab is-pilled has-vertically-spaced">
<button class="item is-active" data-tab="kageryo">KageRyo</button>
<button class="item" data-tab="kageryo-lab">KageRyo's Lab</button>
<button class="item" data-tab="coderyo">CodeRyo</button>
</div>
<!-- KageRyo -->
<div data-name="kageryo">
<div class="ts-box has-top-spaced-small">
<table class="ts-table">
<thead>
<tr>
<th>#</th>
<th>名稱</th>
<th>網址</th>
<th class="mobile:has-hidden">描述</th>
</tr>
</thead>
<tbody id="projects-kageryo">
</tbody>
<tfoot>
<tr>
<th colspan="4" id="total-repos-kageryo">統計筆數:0</th>
</tr>
</tfoot>
</table>
</div>
</div>
<!-- KageRyo's Lab -->
<div data-name="kageryo-lab">
<div class="ts-box has-top-spaced-small">
<table class="ts-table">
<thead>
<tr>
<th>#</th>
<th>名稱</th>
<th>網址</th>
<th class="mobile:has-hidden">描述</th>
</tr>
</thead>
<tbody id="projects-lab">
</tbody>
<tfoot>
<tr>
<th colspan="4" id="total-repos-lab">統計筆數:0</th>
</tr>
</tfoot>
</table>
</div>
</div>
<!-- CodeRyo -->
<div data-name="coderyo">
<div class="ts-box has-top-spaced-small">
<table class="ts-table">
<thead>
<tr>
<th>#</th>
<th>名稱</th>
<th>網址</th>
<th class="mobile:has-hidden">描述</th>
</tr>
</thead>
<tbody id="projects-coderyo">
</tbody>
<tfoot>
<tr>
<th colspan="4" id="total-repos-coderyo">統計筆數:0</th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
<!-- 底部列 -->
<div class="has-flex-center has-top-spaced-small">
<div class="ts-meta is-secondary is-small">
<a href="https://kageryo.coderyo.com/" class="item">© 2023-2024 KageRyo Developer</a>
<a href="https://coderyo.com/" class="item">CodeRyo 碼凌工作室</a>
<a href="https://github.com/KageRyo/" class="item has-bottom-spaced">Chien-Hsun, Chang 張健勳</a>
</div>
</div>
<!-- 未完成功能 -->
<div class="ts-modal is-hidden">
<div class="content">
<div class="ts-content has-flex-center is-vertically-padded">
<div class="ts-header is-icon has-bottom-spaced">
<span class="ts-icon is-circle-exclamation-icon"></span>
這個功能還沒有開放
</div>
如果您有其他問題,歡迎到此專案的 GitHub。
</div>
<div class="ts-divider"></div>
<div class="ts-content is-tertiary">
<button class="ts-button is-fluid" id="close-modal-button">了解</button>
</div>
</div>
</div>
<!-- 引入 JavaScript -->
<script src="./assets/js/script.js"></script>
<!-- 引入邊緣收屜 JavaScript -->
<script src="./assets/js/appdrawer.js"></script>
<!-- 開發者工具警告訊息 -->
<script src="./assets/js/warning.js"></script>
</body>
</html>