-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
297 lines (296 loc) · 10 KB
/
index.html
File metadata and controls
297 lines (296 loc) · 10 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
<!DOCTYPE html>
<html lang="ja" style="height: 100%">
<head>
<title>シ楽バス - 履修登録支援システム</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="東京大学前期課程特化の履修登録支援サービス。使いやすい電子シラバスを提供します。時間割機能と必修自動登録機能で空きコマの把握も一瞬で行えます。"
/>
<link rel="stylesheet" type="text/css" href="material-icons.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="resources/favicon-utcode.png" />
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("/sw.js");
}
</script>
</head>
<body>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-1333G3QB00"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-1333G3QB00");
</script>
<header id="global-header">
<a href="/" id="syllabus-link"
><ruby>シ楽バス<rt>しらばす</rt></ruby></a
>
<a href="https://utcode.net/" target="_blank" id="logo-link">
<span>by</span>
<img src="resources/utc-logo.svg" alt="ut.code();" />
</a>
<span id="toggle-mode">
<span>
<input type="radio" name="toggle-mode" id="view" hidden />
<label for="view" class="f-clickable f-ribbon" tabindex="0"
>View</label
>
</span>
<span>
<input type="radio" name="toggle-mode" id="edit" hidden checked />
<label for="edit" class="f-clickable f-ribbon" tabindex="0"
>Edit</label
>
</span>
</span>
<button id="scroll-to-search" class="material-icons">search</button>
<button id="settings" class="material-icons">settings</button>
</header>
<div id="main-contents">
<section id="calendar-container">
<header>時間割</header>
<div id="credit-display">現在<b id="credit-counter">0</b>単位</div>
<button type="button" id="blank-period" class="b-button">
空きコマを選択
</button>
<button type="button" id="all-period" class="f-reset">
コマ選択クリア
</button>
</section>
<section id="search-panel">
<header id="search-title">検索条件</header>
<div class="b-button">
<input type="checkbox" id="available-only" hidden checked />
<label for="available-only" class="c-binary f-clickable" tabindex="0"
>履修可能な講義のみ表示</label
>
</div>
<section id="search-keyword">
<form>
<header>フリーワード</header>
<input
type="search"
id="search-freeword"
list="freeword-datalist"
/>
<datalist id="freeword-datalist"></datalist>
<div class="b-button">
<input type="checkbox" id="do-search-all" hidden checked />
<label
for="do-search-all"
id="do-search-all-label"
class="c-binary f-clickable"
tabindex="0"
></label>
</div>
</form>
</section>
<div id="search-condition"></div>
<button type="button" id="reset-condition" class="f-reset">
条件を初期化
</button>
</section>
<section id="view-table-container">
<header>
<span id="display-ribbon-wrapper">
<span>
<input
type="radio"
name="lecture-display"
id="searched"
hidden
checked
/>
<label
for="searched"
id="searched-label"
class="f-clickable f-ribbon"
tabindex="0"
>
検索結果
<span id="search-status"></span>
</label>
</span>
<span>
<input
type="radio"
name="lecture-display"
id="registered"
hidden
/>
<label
for="registered"
id="registered-label"
class="f-clickable f-ribbon"
tabindex="0"
>登録中の講義</label
>
</span>
</span>
</header>
<table id="search-result">
<tbody></tbody>
</table>
</section>
</div>
<div id="overlay" hidden></div>
<section id="detail-window">
<header id="detail-header">
<div id="detail-title"></div>
<div id="detail-button-wrapper">
<div class="registration-col" id="detail-register-box">
<input type="checkbox" id="detail-checkbox" hidden />
<label
class="register-button"
id="detail-label"
tabindex="0"
></label>
</div>
<button type="button" id="detail-remove">✕</button>
</div>
</header>
<nav id="detail-content">
<section>
<header>教員</header>
<div id="detail-lecturer"></div>
</section>
<section>
<header>時間割コード / 共通時間割コード</header>
<div id="detail-code"></div>
</section>
<section>
<header>種別</header>
<div id="detail-type"></div>
</section>
<section>
<header>学期 / 曜限 / 単位数</header>
<div id="detail-period"></div>
</section>
<section>
<header>授業時間 / 補填方法</header>
<div id="detail-time"></div>
</section>
<section>
<header>対象クラス</header>
<div id="detail-class"></div>
</section>
<section>
<header>教室</header>
<div id="detail-classroom"></div>
</section>
<section>
<header>ガイダンス</header>
<div id="detail-guidance"></div>
</section>
<section>
<header>履修上の注意</header>
<div id="detail-notes"></div>
</section>
<section>
<header>成績評価方法</header>
<div id="detail-evaluation"></div>
</section>
<section>
<header>詳細</header>
<div id="detail-detail"></div>
</section>
<section>
<header>講義方法</header>
<div id="detail-methods"></div>
</section>
<section>
<header>講義計画</header>
<div id="detail-schedule"></div>
</section>
</nav>
</section>
<section id="title-window" class="over-fullscreen-window">
<header id="title-header">
<div id="title-head-sub">前期課程特化</div>
<div id="title-head-main">時間割サービス</div>
</header>
<div id="title-main">
<div id="title-main-title">シ楽バス</div>
<button id="start">はじめる</button>
<div id="title-main-sub">全ての講義情報を、<wbr />いつも手元に。</div>
</div>
</section>
<section id="settings-window" class="fullscreen-window">
<header>設定画面</header>
<button type="button" id="open-status" class="b-button">
所属選択に戻る
</button>
<button type="button" id="reset-all" class="b-button">
キャッシュクリア
</button>
</section>
<section id="status-window" class="fullscreen-window">
<div id="input-field">
<header id="input-message">所属入力</header>
<form id="personal-status">
<select name="stream" id="compulsory">
<option value="default">科類</option>
<option value="l1">文科一類</option>
<option value="l2">文科二類</option>
<option value="l3">文科三類</option>
<option value="s1">理科一類</option>
<option value="s2">理科二類</option>
<option value="s3">理科三類</option>
</select>
<span>
<select name="grade" id="grade">
<option value="default">学年</option>
<option value="1">1年</option>
<option value="2">2年</option>
</select>
<input
id="class-number"
type="number"
min="1"
max="39"
placeholder="組"
/>
組
</span>
<div id="autofill-wrapper">
<input type="checkbox" id="autofill-compulsory" checked />
<label for="autofill-compulsory">必修を自動入力する</label>
</div>
</form>
<button id="close-status" class="b-button">OK</button>
</div>
</section>
<section id="aa-window" class="fullscreen-window">
<header id="aa-alert">ERROR:有効な所属を入力してください</header>
<div id="askii-art"></div>
<button id="delete-aa" class="b-button">
<< 戻る / Back to Status Input
</button>
</section>
<div id="loading-message" class="fullscreen-window">
<p>Now Loading...</p>
<p>初回はしばらく時間がかかります。</p>
<div id="loader"></div>
</div>
<footer id="global-footer">
<a href="https://forms.gle/stBdKuCsXm8LUdBm8">ご意見</a>
<a href="howToUse.html">使い方</a>
<a href="notion.html">履修上の注意</a>
<a href="disclaimer.html">免責事項</a>
<a href="aboutus.html">About us</a>
<a href="https://utcode.net/" target="_blank">ut.code();</a>
</footer>
<script src="./lz-string.min.js"></script>
<script src="./script.js"></script>
</body>
</html>