forked from daancsc/DACSC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
156 lines (150 loc) · 4.25 KB
/
index.js
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
let _ = document
let $ = _.querySelector.bind(_)
let app = {
_title: '',
_renderBase: '',
name: '大安高工電腦研究社',
shortname: '大安電研',
en_name: 'DACSC',
modules: {
'_': i => _(i),
'$': i => $(i),
'startTyping': () => {
let typed = new Typed('#typed', {
stringsElement: '#typed-strings',
typeSpeed: 30,
backSpeed: 15
})
}
},
footer: 'DAAN Computer Study Club since 1999',
year: new Date().getFullYear(),
init: () => {
app.menu.close()
app.renderBase = ''
},
menu: {
item: [
{
id: 0,
text: '課程',
link: '/class'
}, {
id: 1,
text: '相簿',
link: '/photos'
}, {
id: 2,
text: '關於電研',
link: null,
sub: [
{
text: '簡介',
link: '/about'
}, {
text: '憲章',
link: '/rules'
}, {
text: '友社',
link: '/friends'
}
]
}
],
close: () => {
$('#phonemenu').innerHTML = ''
$('#icon').innerHTML = `<i class="fas fa-bars bar" aria-hidden="true" onclick="app.menu.open()"></i>`
app.menu.isShow = false
},
open: () => {
$('#phonemenu').innerHTML = app.menu.html
$('#icon').innerHTML = `<i class="fas fa-times bar" aria-hidden="true" onclick="app.menu.close()"></i>`
app.menu.isShow = true
},
showsub: id => {
let html = ''
let style = `text-align: right;
width: 100%;
`
let j = 0
app.menu.item[id].sub.forEach(i => {
if (j === 0) {
html += `<p>
<i class="fas fa-angle-left" style="text-align: left;margin-left: 0;width: 50%" aria-hidden="true" onclick="app.menu.open()"></i>
<a style="${style}" href="#${i.link}">${i.text}</a>
</p>`
j = 1
} else {
html += `<p><a style="${style}" href="#${i.link}">${i.text}</a></p>`
}
})
$('#phonemenu').innerHTML = html
},
isShow: false,
html: ''
},
get title () {
return this._title
},
set title (val) {
_.title = val
this._title = val
},
get renderBase () {
return this._renderBase
},
set renderBase (val) {
$('#page').innerHTML = val
}
}
app.menu.item.forEach(i => {
let drop = ''
let morebutton = ''
let isdrop = ''
let itemHtml = ''
if (i.sub !== undefined) {
isdrop = `dropdown`
let k = 1
i.sub.forEach(j => {
drop += `<p><a class="subitem" style="animation-delay: .${k}s" href="#${j.link}">${j.text}</a></p>`
k++
})
morebutton = `<i class="fas fa-angle-right" aria-hidden="true" onclick="app.menu.showsub(${i.id})"></i>`
}
if (i.link !== null) {
itemHtml = `<a href="#${i.link}">${i.text}</a>${morebutton}`
} else {
itemHtml = `${i.text}${morebutton}`
}
app.menu.html += `<p>${itemHtml}</p>`
if (i.link === null) {
i.link = ''
}
$('#menu').innerHTML += `<div class="title nonphone menu ${isdrop}"><a href="#${i.link}">${i.text}</a>
<div style="margin-top: 1em;">${drop}</div>
</div>`
})
$('#icon').innerHTML = `<i class="fas fa-bars bar" aria-hidden="true" onclick="app.menu.open()"></i>`
$('.nonphone').innerHTML = app.name
$('.phone').innerHTML = app.shortname
$('#footer').innerHTML = `© ${app.year} <b>${app.footer}</b>.`
let underDEV = () => {
app.init()
app.renderBase = `
<div class="cover container mono">
<div id="typed-strings"></div>
<span id="typed"></span>
</div>
`
$('#typed-strings').innerHTML = `<p>We are under<br><span class="color">Development</span>!</p>`
app.modules.startTyping()
}
_.addEventListener('DOMContentLoaded', () => {
pangu.autoSpacingPage()
})
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
$('#favicon').href = "logo.png"
} else {
$('#favicon').href = "logo_black.png"
}
console.log('%c DACSC\n 大安電研\n 21st\n ', 'font-family: "Ubuntu Mono", monospace;font-size: 5em; color: red;text-shadow: 3px 3px 0 rgb(217,31,38) , 6px 6px 0 rgb(226,91,14) , 9px 9px 0 rgb(245,221,8) , 12px 12px 0 rgb(5,148,68) , 15px 15px 0 rgb(2,135,206) , 18px 18px 0 rgb(4,77,145) , 21px 21px 0 rgb(42,21,113)')