-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsupport.html
More file actions
378 lines (363 loc) · 10.6 KB
/
support.html
File metadata and controls
378 lines (363 loc) · 10.6 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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>DimiCheck Support</title>
<!-- 대체 왜 여기서 이걸 보시는지는 모르겠지만 코드는 뭐가 없어요. 맞아요, GPT가 짜줬답니다. 이런 사이트는 굳이 사람이 만들 필요까진 없잖아요. 깃허브에 별 하나 찍고 가세요. 감사합니다. -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {margin:0; padding:0; box-sizing:border-box;}
html {scroll-behavior: smooth;}
body {
font-family: 'Segoe UI', sans-serif;
background: #0f172a;
color: white;
overflow-x: hidden;
}
#bg {
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
a,
a:link,
a:visited,
a:hover,
a:active {
color: white;
text-decoration: underline;
}
header {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
}
header h1 {
font-size: 4em;
margin-bottom: 15px;
white-space: nowrap;
text-shadow: 0 0 20px #38bdf8, 0 0 40px #3b82f6;
}
header p {
font-size: 1.3em;
margin-bottom: 25px;
opacity: 0.85;
}
.scroll-down {
position: absolute;
bottom: 30px;
font-size: 1.2em;
opacity: 0.7;
animation: bounce 1.5s infinite;
}
@keyframes bounce {
0%, 100% {transform: translateY(0);}
50% {transform: translateY(10px);}
}
section {
padding: 100px 20px;
text-align: center;
opacity: 0;
transform: translateY(50px);
transition: all 1s ease;
}
section.visible {
opacity: 1;
transform: translateY(0);
}
.cards {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-top: 40px;
}
.card {
perspective: 1000px;
width: 260px;
height: 200px;
}
.card-inner {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: transform 0.8s;
}
/* .card:hover .card-inner {
transform: rotateY(180deg);
} */
.card-face {
position: absolute;
width: 100%;
height: 100%;
border-radius: 20px;
backface-visibility: hidden;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 0 10px 25px rgba(0,0,0,0.4);
background: rgba(255,255,255,0.08);
backdrop-filter: blur(12px);
}
.card-back {
transform: rotateY(180deg);
background: rgba(250,204,21,0.9);
color: #111;
font-weight: bold;
}
a.btn {
margin-top: 15px;
padding: 12px 20px;
border-radius: 12px;
background: linear-gradient(135deg, #facc15, #fcd34d);
color: #1e293b;
font-weight: bold;
text-decoration: none;
transition: transform 0.2s;
}
a.btn:hover {transform: scale(1.1);}
footer {
margin-top: 80px;
text-align: center;
padding: 50px;
background: rgba(255,255,255,0.05);
opacity: 0;
transform: translateY(50px);
transition: all 1s ease;
}
footer.visible {
opacity: 1;
transform: translateY(0);
}
.contributors {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin: 20px 0;
}
.contributors .c-card {
perspective: 1000px;
width: 100px;
height: 130px;
}
.contributors .inner {
position: relative;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: transform 0.8s;
}
.contributors .c-card:hover .inner {
transform: rotateY(180deg);
}
.contributors .face {
position: absolute;
width: 100%;
height: 100%;
border-radius: 15px;
backface-visibility: hidden;
display: flex;
justify-content: center;
align-items: center;
background: rgba(255,255,255,0.1);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.contributors .back {
transform: rotateY(180deg);
background: #facc15;
color: #111;
font-weight: bold;
}
.contributors .back.godback {
box-shadow: 0 0 8px 4px #facc15, 0 0 12px 6px #facc1500;
}
.contributors img {
width: 70px;
height: 70px;
border-radius: 50%;
}
.contributors img.god {
box-shadow: 0 0 8px 4px #facc15, 0 0 12px 6px #facc1500;
}
</style>
</head>
<body>
<canvas id="bg"></canvas>
<header>
<h1 id="title" style="font-size: clamp(20px, 10vw, 80px); "></h1>
<p>여러분의 ⭐ 하나가 우리를 더 강하게 만듭니다!</p>
<iframe src="https://ghbtns.com/github-btn.html?user=dimicheck&repo=dimicheck&type=star&count=true&size=large"
frameborder="0" scrolling="0" width="170" height="35" title="GitHub"></iframe>
<div class="scroll-down">⬇ Scroll</div>
</header>
<section id="section1">
<h2>어떻게 도와줄 수 있나요?</h2>
<div class="cards">
<div class="card">
<div class="card-inner">
<div class="card-face">
<h2>버그 제보</h2>
<p>발견한 오류를 알려주세요.</p>
<br>
<a href="https://github.com/dimicheck/dimicheck/issues" target="_blank" class="btn">제보하기</a>
</div>
<div class="card-face card-back">
Issue에 report하면 됩니다.
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-face">
<h2>기능 제안</h2>
<p>새로운 아이디어를 공유해주세요.</p>
<a href="https://github.com/dimicheck/dimicheck/issues" target="_blank" class="btn">제안하기</a>
</div>
<div class="card-face card-back">
일단 적고 보세요.
</div>
</div>
</div>
<div class="card">
<div class="card-inner">
<div class="card-face">
<h2>기부하기</h2>
<br>
<br>
<p>API 키, 혹은 AWS 등을 기부해주신다면 아주 유용하게 쓰겠습니다.</p>
<!-- <a href="https://github.com/dimicheck/dimicheck/issues" target="_blank" class="btn">제안하기</a> -->
</div>
<div class="card-face card-back">
일단 적고 보세요.
</div>
</div>
</div>
</div>
</section>
<footer id="contributors">
<h2>👩💻 Contributors</h2>
<div class="contributors">
<a href="https://github.com/abcdana122" target="_blank">
<div class="c-card">
<div class="inner">
<div class="face">
<img class= "god" src="https://github.com/abcdana122.png" alt="abcdana122">
</div>
<div class="face back godback">abcdana122, The King God Backend Master</div>
</div>
</div>
</a>
<a href="https://github.com/hjun1052" target="_blank">
<div class="c-card">
<div class="inner">
<div class="face">
<img src="https://github.com/hjun1052.png" alt="hjun1052">
</div>
<div class="face back">hjun1052 Vibe Coding Nalmuk</div>
</div>
</div>
</a>
<a href="https://github.com/zackalzackal" target="_blank">
<div class="c-card">
<div class="inner">
<div class="face">
<img src="https://ichef.bbci.co.uk/ace/ws/640/cpsprodpb/16620/production/_91408619_55df76d5-2245-41c1-8031-07a4da3f313f.jpg.webp" alt="zackalzackal">
</div>
<div class="face back">zackalzackal Who are you?</div>
</div>
</div>
</a>
<a href="https://github.com/CTPR037" target="_blank">
<div class="c-card">
<div class="inner">
<div class="face">
<img src="https://github.com/CTPR037.png" alt="CTPR037">
</div>
<div class="face back">CTPR037 Debugging Master</div>
</div>
</div>
</a>
<a href="https://github.com/farrell508" target="_blank">
<div class="c-card">
<div class="inner">
<div class="face">
<img src="https://github.com/farrell508.png" alt="farrell508">
</div>
<div class="face back">farrell508 Claude Master</div>
</div>
</div>
</a>
</div>
<p>Made with 🔥, , ⌨️ by DimiCheck Team</p>
<br>
<p><a href="oldindex.html">초창기 시계만 있던 첫 버전</a> | <a href="oldindex2.html">상태창 기능이 처음 추가된 버전</a></p>
<br>
<p>갈려 나가는 것을 즐긴다면? 저희 팀에 합류하여 무임금 초과근로의 짜릿함을 느끼세요.</p>
</footer>
<script>
const titleText = "DimiCheck Support";
const titleEl = document.getElementById("title");
let idx = 0;
function typing() {
if (idx < titleText.length) {
titleEl.innerHTML += titleText[idx];
idx++;
setTimeout(typing, 100);
}
}
typing();
const canvas = document.getElementById("bg");
const ctx = canvas.getContext("2d");
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
let particles = [];
for (let i = 0; i < 150; i++) {
particles.push({
x: Math.random() * canvas.width,
y: Math.random() * canvas.height,
z: Math.random() * canvas.width,
r: Math.random() * 2 + 1
});
}
function draw() {
ctx.fillStyle = "rgba(15,23,42,0.3)";
ctx.fillRect(0, 0, canvas.width, canvas.height);
for (let p of particles) {
let scale = 200 / (200 + p.z);
let x = (p.x - canvas.width/2) * scale + canvas.width/2;
let y = (p.y - canvas.height/2) * scale + canvas.height/2;
ctx.beginPath();
ctx.arc(x, y, p.r * scale, 0, Math.PI*2);
ctx.fillStyle = "#fff";
ctx.fill();
p.z -= 2;
if (p.z <= 0) p.z = canvas.width;
}
requestAnimationFrame(draw);
}
draw();
const sections = document.querySelectorAll("section, footer");
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add("visible");
}
});
}, {threshold: 0.2});
sections.forEach(s => observer.observe(s));
window.addEventListener("resize", () => {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
});
</script>
</body>
</html>