-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1411 lines (1315 loc) · 81 KB
/
Copy pathindex.html
File metadata and controls
1411 lines (1315 loc) · 81 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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<script>(function(){var t;try{t=localStorage.getItem('theme')}catch(e){}if(t!=='light'&&t!=='dark'){t=window.matchMedia&&window.matchMedia('(prefers-color-scheme:dark)').matches?'dark':'light'}document.documentElement.setAttribute('data-theme',t)})()</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>티모집사의 유용한 웹 도구 모음😺</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="/special-chars/theme.css">
<link rel="manifest" href="/special-chars/manifest.json">
<link rel="apple-touch-icon" href="favicon.png">
<meta name="theme-color" content="#6366f1">
<meta name="description" content="특수 문자, 글자 수 계산기, 날짜 계산기, 단위 변환기, 빠른 답장 등 일상과 업무에 필요한 무료 웹 도구 모음입니다.">
<link rel="canonical" href="https://teemozipsa.github.io/">
<!-- 네이버 서치어드바이저 인증 메타태그 -->
<meta name="naver-site-verification" content="1240f9c95aabdaaf2a61568437d1a8cbc1749a0c" />
<!-- 구글 서치콘솔 인증 메타태그 -->
<meta name="google-site-verification" content="Q3amxZVhsseow7dtGnkw67e9LnGy8gGF7HYBASnEz6o" />
<!-- 구글 애드센스 코드 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3501868770820650" crossorigin="anonymous"></script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"WebSite","name":"티모집사","url":"https://teemozipsa.github.io/","description":"일상과 업무에 필요한 무료 웹 도구 모음","inLanguage":"ko-KR","publisher":{"@type":"Organization","name":"티모집사","url":"https://teemozipsa.github.io/","sameAs":["https://www.instagram.com/seon_7yu/"]},"potentialAction":{"@type":"SearchAction","target":"https://teemozipsa.github.io/?q={search_term_string}","query-input":"required name=search_term_string"}}</script>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"티모집사","url":"https://teemozipsa.github.io/","contactPoint":{"@type":"ContactPoint","contactType":"customer support","url":"https://teemozipsa.github.io/contact.html","availableLanguage":["ko"]}}</script>
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, 'Noto Sans KR', 'Malgun Gothic', sans-serif;
background: var(--bg-body); color: var(--text-secondary); min-height: 100vh;
position: relative; overflow-x: hidden;
}
/* === 업데이트 배너 === */
.update-banner {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: #fff; text-align: center; padding: 10px 40px 10px 20px;
font-size: 13px; font-weight: 500; position: relative;
}
.update-banner a { color: #e0e7ff; }
.banner-close {
position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
background: none; border: none; color: rgba(255,255,255,.7); font-size: 18px;
cursor: pointer; padding: 4px; line-height: 1;
}
.banner-close:hover { color: #fff; }
/* === 헤더 === */
.hero { text-align: center; padding: 40px 20px 0; max-width: 720px; margin: 0 auto; }
.hero h1 { font-size: 34px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; margin-bottom: 8px; }
.hero p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
/* === 오늘의 정보 위젯 === */
.today-widget {
max-width: 480px; margin: 0 auto 24px; background: var(--bg-card);
border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px;
display: flex; justify-content: space-between; align-items: center;
box-shadow: var(--shadow-sm); gap: 12px; flex-wrap: wrap;
}
.today-date { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.today-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.today-clock { font-size: 22px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.today-remain { font-size: 11px; color: var(--text-muted); text-align: right; }
/* === 검색창 === */
.search-wrap { max-width: 480px; margin: 0 auto 20px; position: relative; }
.search-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; fill: var(--text-muted); pointer-events: none; }
.search-wrap input {
width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
padding: 14px 16px 14px 46px; font-size: 15px; color: var(--text-primary); outline: none;
font-family: inherit; transition: border-color .2s, box-shadow .2s; box-shadow: var(--shadow-sm);
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-wrap input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,.15); }
/* === 즐겨찾기 / 최근 사용 섹션 === */
.section-label {
max-width: 960px; margin: 0 auto; padding: 0 20px 8px;
font-size: 13px; font-weight: 700; color: var(--text-muted);
display: none; align-items: center; gap: 6px;
}
.section-label.visible { display: flex; }
/* === 카드 그리드 === */
.tools-grid {
max-width: 960px; margin: 0 auto; padding: 0 20px 16px;
display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px;
}
.tool-card {
background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
padding: 18px 20px; text-decoration: none; color: inherit; cursor: pointer;
transition: all .25s ease; display: flex; align-items: center; gap: 14px;
user-select: none; box-shadow: var(--shadow-sm); position: relative;
}
.tool-card:hover { transform: translateY(-3px); border-color: var(--border-hover); box-shadow: var(--shadow-accent); }
.tool-card::after { content: ''; position: absolute; inset: -10px; }
.tool-card:active { transform: translateY(-1px); }
.tool-card.dragging { opacity: .4; transform: scale(.95); }
.fav-drop-zone { position: relative; }
.tool-icon { font-size: 26px; line-height: 1; flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-input); border-radius: 10px; }
.tool-info { flex: 1; min-width: 0; }
.tool-name { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool-desc { font-size: 12px; color: var(--text-muted); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool-card:hover .tool-name { color: var(--accent); }
/* 즐겨찾기 버튼 */
.fav-btn {
position: absolute; top: 8px; right: 8px; background: none; border: none;
font-size: 16px; cursor: pointer; color: var(--text-muted); transition: color .2s;
padding: 4px; line-height: 1; z-index: 2;
}
.fav-btn:hover { color: #f59e0b; }
.fav-btn.active { color: #f59e0b; }
.no-results { text-align: center; color: var(--text-muted); font-size: 14px; padding: 40px 20px; display: none; }
/* === 검색 자동완성 드롭다운 === */
.search-dropdown {
position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-card);
border: 1px solid var(--border); border-top: none; border-radius: 0 0 12px 12px;
box-shadow: var(--shadow-lg); z-index: 10; display: none;
max-height: 320px; overflow-y: auto;
}
.search-dropdown.open { display: block; }
.search-dropdown-item {
display: flex; align-items: center; gap: 10px; padding: 10px 16px;
text-decoration: none; color: inherit; cursor: pointer; transition: background .15s;
}
.search-dropdown-item:hover, .search-dropdown-item.active { background: var(--bg-hover); }
.search-dropdown-item .sdi-icon { font-size: 18px; width: 28px; text-align: center; flex-shrink: 0; }
.search-dropdown-item .sdi-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.search-dropdown-item .sdi-desc { font-size: 11px; color: var(--text-muted); }
.search-wrap input.dropdown-open { border-radius: 12px 12px 0 0; }
/* === 뷰 전환 토글 === */
.view-controls {
max-width: 960px; margin: 0 auto; padding: 0 20px 8px;
display: flex; align-items: center; justify-content: space-between;
}
.view-toggle { display: flex; gap: 8px; }
/* === 카테고리 뷰 === */
.category-group { max-width: 960px; margin: 0 auto; padding: 0 20px 16px; display: none; }
.category-group.visible { display: block; }
.category-title {
font-size: 14px; font-weight: 700; color: var(--text-secondary); margin-bottom: 10px;
padding-bottom: 6px; border-bottom: 2px solid var(--border);
display: flex; align-items: center; gap: 6px;
}
.category-grid {
display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px;
margin-bottom: 20px;
}
/* === 접기/펼치기 토글 버튼 === */
.faq-toggle-btn { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 4px; width: 100%; padding: 10px; background: var(--bg-hover); border: 1px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--accent); cursor: pointer; transition: all .2s; font-family: inherit; margin-top: 4px; }
.faq-toggle-btn::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: radial-gradient(circle 100px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.2), transparent 100%); opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 0; }
.faq-toggle-btn:hover::before { opacity: 1; }
.faq-toggle-btn:hover { background: var(--accent-light); border-color: var(--border-hover); }
/* === 팁 섹션 === */
.tip-section {
max-width: 960px; margin: 0 auto; padding: 0 20px 32px;
}
.tip-card {
background: var(--accent-light); border: 1px solid var(--border); border-radius: 12px;
padding: 14px 18px; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px;
}
.tip-icon { font-size: 20px; flex-shrink: 0; }
.tip-text { line-height: 1.5; }
.tip-label { font-weight: 700; color: var(--accent); }
/* === 푸터 === */
footer { text-align: center; color: var(--text-muted); font-size: 12px; padding: 24px 20px 40px; border-top: 1px solid var(--border); max-width: 960px; margin: 0 auto; }
footer a { color: var(--text-secondary); text-decoration: none; transition: color .2s; display: inline-flex; align-items: center; gap: 3px; }
footer a:hover { color: var(--accent); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px; margin-bottom: 8px; }
@media (max-width: 640px) {
.hero { padding-top: 32px; }
.hero h1 { font-size: 24px; }
.hero p { font-size: 13px; margin-bottom: 16px; }
.tools-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 16px 16px; }
.tool-name { font-size: 15px; }
.today-widget { flex-direction: column; text-align: center; gap: 8px; }
.today-remain { text-align: center; }
}
/* === 맨 위로 버튼 === */
.scroll-top-btn{position:fixed;bottom:24px;right:24px;width:44px;height:44px;border-radius:50%;background:var(--accent);color:var(--text-on-accent);border:none;font-size:20px;font-weight:700;cursor:pointer;z-index:900;box-shadow:var(--shadow-accent);opacity:0;visibility:hidden;transition:opacity .3s,visibility .3s,transform .2s}
.scroll-top-btn.visible{opacity:1;visibility:visible}
.scroll-top-btn:hover{transform:scale(1.1);background:var(--accent-hover)}
@media(max-width:640px){.scroll-top-btn{bottom:24px;right:16px;width:40px;height:40px;font-size:18px}}
/* === Blob 배경 === */
.blob-bg{position:fixed;top:0;left:0;width:100%;height:100%;overflow:hidden;z-index:0;pointer-events:none;filter:blur(90px);opacity:.5}
.blob-bg .blob{position:absolute;border-radius:50%}
.blob-bg .b1{width:420px;height:420px;top:-8%;left:-5%;animation:bFloat1 14s ease-in-out infinite}
.blob-bg .b2{width:350px;height:350px;bottom:-8%;right:-3%;animation:bFloat2 18s ease-in-out infinite}
.blob-bg .b3{width:300px;height:300px;top:45%;left:55%;animation:bFloat3 20s ease-in-out infinite}
/* 다크모드 블롭 색상 */
html[data-theme="dark"] .b1{background:radial-gradient(circle,rgba(124,58,237,.6) 0%,transparent 70%)}
html[data-theme="dark"] .b2{background:radial-gradient(circle,rgba(59,130,246,.5) 0%,transparent 70%)}
html[data-theme="dark"] .b3{background:radial-gradient(circle,rgba(167,139,250,.4) 0%,transparent 70%)}
/* 라이트모드 블롭 색상 - 좀 더 선명하게 */
html[data-theme="light"] .b1{background:radial-gradient(circle,rgba(99,102,241,.8) 0%,transparent 70%)}
html[data-theme="light"] .b2{background:radial-gradient(circle,rgba(59,130,246,.7) 0%,transparent 70%)}
html[data-theme="light"] .b3{background:radial-gradient(circle,rgba(139,92,246,.75) 0%,transparent 70%)}
@keyframes bFloat1{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(80px,60px) scale(1.08)}66%{transform:translate(-40px,100px) scale(.95)}}
@keyframes bFloat2{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(-100px,-50px) scale(1.12)}66%{transform:translate(50px,-80px) scale(.92)}}
/* 전체 사이트 뷰 토글 버튼용 고급 스포트라이트 (Glow) */
.view-toggle button {
position: relative; overflow: hidden;
background: var(--bg-btn); border: 1px solid var(--border); padding: 8px 14px; font-size: 13px; font-weight: 600;
border-radius: 8px; cursor: pointer; color: var(--text-muted); font-family: inherit; transition: all .2s;
}
.view-toggle button::before {
content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%;
background: radial-gradient(circle 40px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.35), transparent 100%);
opacity: 0; transition: opacity .3s; pointer-events: none; z-index: 0;
}
.view-toggle button:hover::before { opacity: 1; }
.view-toggle button.active { background: var(--accent); color: var(--text-on-accent); border-color: var(--accent-hover); }
.view-toggle button.active::before { display: none; }
.view-toggle span { position: relative; z-index: 1; pointer-events: none; }
.tool-card::after { content: ''; position: absolute; inset: -15px; z-index: -1; pointer-events: auto; }
.tool-card>*{position:relative;z-index:1}
/* 콘텐츠를 블롭 위에 */
.update-banner,.hero,.today-widget,.search-wrap,.section-label,.view-controls,.tools-grid,.fav-drop-zone,.category-group,.tip-section,footer,.no-results{position:relative;z-index:1}
/* === 2026 portal refresh === */
.blob-bg { display: none; }
body {
background:
linear-gradient(180deg, rgba(15, 23, 42, .04), transparent 420px),
var(--bg-body);
}
html[data-theme="dark"] body {
background:
linear-gradient(180deg, #0f172a 0%, #111827 460px, var(--bg-body) 100%);
}
.site-nav {
max-width: 1120px; margin: 18px auto 0; padding: 0 20px;
display: flex; align-items: center; justify-content: space-between; gap: 18px;
position: relative; z-index: 2;
}
.brand-link {
display: inline-flex; align-items: center; gap: 10px;
color: var(--text-primary); text-decoration: none; font-weight: 900;
letter-spacing: -0.02em;
}
.brand-mark {
width: 34px; height: 34px; border-radius: 10px;
display: grid; place-items: center;
background: linear-gradient(135deg, #2563eb, #0fba9f);
color: #fff; box-shadow: 0 10px 22px rgba(37, 99, 235, .28);
}
.site-nav-links { display: flex; align-items: center; gap: 8px; }
.site-nav-links a {
color: var(--text-secondary); text-decoration: none;
padding: 9px 12px; border-radius: 10px; font-size: 13px; font-weight: 800;
}
.site-nav-links a:hover { background: var(--bg-hover); color: var(--text-primary); }
.site-nav-links .nav-strong {
background: var(--accent); color: var(--text-on-accent);
box-shadow: var(--shadow-accent);
}
.site-nav-links .nav-strong:hover { background: var(--accent-hover); color: var(--text-on-accent); }
.hero {
max-width: 1120px; padding: 34px 20px 28px;
}
.hero-shell {
display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
gap: 22px; align-items: stretch; min-width: 0;
}
.hero-main, .hero-side-card, .mini-card {
background: color-mix(in srgb, var(--bg-card) 92%, transparent);
border: 1px solid var(--border); border-radius: 24px;
box-shadow: var(--shadow-lg);
}
.hero-main {
text-align: left; padding: 34px;
overflow: hidden; position: relative; min-width: 0;
}
.hero-main::before {
content: ""; position: absolute; inset: 0 0 auto;
height: 5px; background: linear-gradient(90deg, #2563eb, #0fba9f, #f59e0b);
}
.hero-kicker {
display: inline-flex; align-items: center; gap: 8px;
color: var(--accent); background: var(--accent-light);
border: 1px solid var(--border); border-radius: 999px;
padding: 7px 11px; font-size: 12px; font-weight: 900;
}
.hero h1 {
max-width: 680px; margin: 18px 0 12px;
font-size: clamp(38px, 5vw, 64px); line-height: 1.02;
letter-spacing: -0.06em; text-align: left; overflow-wrap: break-word;
}
.hero p {
max-width: 610px; margin: 0;
font-size: 17px; line-height: 1.7; text-align: left;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-action {
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
min-height: 44px; padding: 0 16px; border-radius: 12px;
text-decoration: none; font-weight: 900; font-size: 14px;
border: 1px solid var(--border); color: var(--text-primary); background: var(--bg-card);
}
.hero-action.primary { background: var(--accent); border-color: var(--accent); color: var(--text-on-accent); }
.hero-action:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hero-stats {
display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px; margin-top: 28px;
}
.hero-stat {
border: 1px solid var(--border); border-radius: 16px; padding: 14px;
background: var(--bg-input);
}
.hero-stat strong { display: block; color: var(--text-primary); font-size: 22px; line-height: 1; }
.hero-stat span { display: block; margin-top: 6px; color: var(--text-muted); font-size: 12px; font-weight: 700; }
.hero-side { display: grid; gap: 14px; min-width: 0; }
.hero-side-card { padding: 22px; }
.hero-side-card h2 { color: var(--text-primary); font-size: 20px; line-height: 1.25; letter-spacing: -0.03em; }
.hero-side-card p { margin-top: 8px; font-size: 13px; line-height: 1.6; }
.quick-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.quick-link {
text-decoration: none; color: var(--text-primary); background: var(--bg-input);
border: 1px solid var(--border); border-radius: 14px; padding: 13px;
font-size: 13px; font-weight: 900; min-height: 78px;
display: flex; flex-direction: column; justify-content: space-between;
}
.quick-link span { color: var(--text-muted); font-size: 11px; font-weight: 700; }
.mini-card { padding: 18px 20px; }
.mini-card a { color: var(--accent); font-weight: 900; text-decoration: none; }
.today-widget {
max-width: none; margin: 18px 0 0; border-radius: 18px;
background: var(--bg-input);
}
.search-wrap { max-width: 720px; margin: 24px auto 14px; }
.search-wrap input {
min-height: 56px; border-radius: 16px; font-size: 16px;
box-shadow: var(--shadow-lg);
}
.search-wrap input.dropdown-open { border-radius: 16px 16px 0 0; }
.tools-grid, .category-group, .view-controls, .section-label, .tip-section {
max-width: 1120px;
}
.view-controls { margin-top: 10px; }
.tool-card {
border-radius: 18px; min-height: 86px;
background: color-mix(in srgb, var(--bg-card) 94%, transparent);
}
.tool-icon {
background: linear-gradient(135deg, var(--accent-light), var(--bg-input));
}
.portal-note {
max-width: 1120px; margin: 0 auto 18px; padding: 0 20px;
position: relative; z-index: 1;
}
.portal-note-inner {
display: flex; align-items: center; justify-content: space-between; gap: 12px;
padding: 14px 16px; border: 1px solid var(--border); border-radius: 16px;
background: var(--bg-card); color: var(--text-secondary); box-shadow: var(--shadow-sm);
font-size: 13px;
}
.portal-note-inner a { color: var(--accent); text-decoration: none; font-weight: 900; }
@media (max-width: 900px) {
.site-nav { margin-top: 12px; }
.site-nav-links { gap: 4px; overflow-x: auto; }
.site-nav-links a { white-space: nowrap; }
.hero-shell { grid-template-columns: 1fr; }
.hero-main { padding: 28px 24px; }
.hero h1, .hero p { text-align: left; }
}
@media (max-width: 560px) {
.update-banner {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.theme-toggle-portal { display: none; }
.site-nav { align-items: flex-start; flex-direction: column; }
.site-nav-links { width: 100%; max-width: 100%; padding-bottom: 2px; }
.hero { width: 100%; max-width: 100%; padding: 22px 16px 24px; overflow: hidden; }
.hero-shell { display: block; width: 100%; max-width: 100%; }
.hero-main, .hero-side-card, .mini-card { width: 100%; max-width: 100%; }
.hero-side { margin-top: 14px; }
.hero-main { padding: 25px 20px; border-radius: 20px; }
.hero h1 { font-size: 30px; letter-spacing: -0.045em; line-height: 1.08; word-break: break-all; }
.hero p { font-size: 15px; overflow-wrap: anywhere; }
.hero-actions { flex-direction: column; }
.hero-action { width: 100%; max-width: 100%; }
.hero-stats { grid-template-columns: 1fr; }
.quick-links { grid-template-columns: 1fr; }
.portal-note-inner { align-items: flex-start; flex-direction: column; }
}
</style>
</head>
<body>
<!-- Blob 배경 -->
<div class="blob-bg" id="blobBg" aria-hidden="true"><div class="blob b1"></div><div class="blob b2"></div><div class="blob b3"></div></div>
<!-- 문의 배너 -->
<div class="update-banner" id="updateBanner" style="display:none">
💡 필요한 기능이나 개선 사항이 있으시면 <a href="https://www.instagram.com/seon_7yu/" target="_blank" rel="noopener"><strong>인스타그램 DM</strong></a>으로 편하게 알려주세요!
<button class="banner-close" onclick="dismissBanner()" aria-label="닫기">×</button>
</div>
<nav class="site-nav" aria-label="주요 메뉴">
<a href="/" class="brand-link">
<span class="brand-mark">T</span>
<span>티모집사 툴즈</span>
</a>
<div class="site-nav-links">
<a href="#toolsGrid">도구</a>
<a href="/blog/">블로그</a>
<a href="/en/">English</a>
<a class="nav-strong" href="#searchInput">검색</a>
</div>
</nav>
<div class="hero">
<div class="hero-shell">
<section class="hero-main" aria-labelledby="mainTitle">
<div class="hero-kicker">브라우저에서 바로 쓰는 생활·업무 도구</div>
<h1 id="mainTitle">필요한 계산과 변환을<br>한 화면에서 끝냅니다.</h1>
<p>회원가입 없이 바로 열고,<br>입력값은 내 브라우저 안에서 처리합니다.<br>자주 쓰는 도구는 검색과 즐겨찾기로 빠르게 이동하세요.</p>
<div class="hero-actions">
<a class="hero-action primary" href="#searchInput">도구 검색하기</a>
<a class="hero-action" href="/special-chars/">특수문자 열기</a>
<a class="hero-action" href="/blog/">블로그 보기</a>
</div>
<div class="hero-stats" aria-label="사이트 요약">
<div class="hero-stat"><strong>36+</strong><span>무료 웹 도구</span></div>
<div class="hero-stat"><strong>100%</strong><span>클라이언트 처리</span></div>
<div class="hero-stat"><strong>PWA</strong><span>모바일 홈 화면 지원</span></div>
</div>
<div class="today-widget">
<div>
<div class="today-date" id="todayDate"></div>
<div class="today-sub" id="todaySub"></div>
</div>
<div style="text-align:right">
<div class="today-clock" id="todayClock"></div>
<div class="today-remain" id="todayRemain"></div>
</div>
</div>
</section>
<aside class="hero-side" aria-label="추천 링크">
<div class="hero-side-card">
<h2>많이 찾는 도구부터 바로 시작</h2>
<p>계산기, 날짜, 이미지, 파일, AI 프롬프트 도구를 빠르게 열 수 있습니다.</p>
<div class="quick-links">
<a class="quick-link" href="/special-chars/date-calc/">날짜/D-Day<span>일정 계산</span></a>
<a class="quick-link" href="/special-chars/image-compress/">이미지 압축<span>용량 줄이기</span></a>
<a class="quick-link" href="/special-chars/loan-calc/">대출이자<span>상환 비교</span></a>
<a class="quick-link" href="/special-chars/prompt-gen/">AI 프롬프트<span>템플릿 생성</span></a>
</div>
</div>
<div class="mini-card">
블로그는 도구 사용법과 생활 계산 기준을 함께 확인할 수 있는 가이드 허브입니다. <a href="/blog/">블로그 보기 →</a>
</div>
</aside>
</div>
</div>
<div class="search-wrap">
<svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
<input type="text" id="searchInput" placeholder="도구 검색... (예: 글자, 날짜, 특수문자)" oninput="onSearchInput()" onkeydown="onSearchKeydown(event)" onfocus="onSearchFocus()" autocomplete="off">
<div class="search-dropdown" id="searchDropdown"></div>
</div>
<div class="portal-note">
<div class="portal-note-inner">
<span>추천 흐름: 급한 계산은 검색, 반복 사용 도구는 즐겨찾기, 사용법 글은 블로그에서 이어갑니다.</span>
<a href="/blog/">블로그/가이드 정리하기 →</a>
</div>
</div>
<!-- 최근 사용 섹션 -->
<div class="section-label" id="recentLabel">🕐 최근 사용</div>
<div class="tools-grid" id="recentGrid"></div>
<!-- 즐겨찾기 섹션 -->
<div class="section-label" id="favLabel">⭐ 즐겨찾기</div>
<div class="fav-drop-zone" id="favDropZone">
<div class="tools-grid" id="favGrid"></div>
</div>
<!-- 전체 도구 -->
<div class="view-controls">
<div class="section-label visible" style="margin:0;padding:0">📦 전체 도구</div>
<div class="view-toggle" id="viewToggle">
<button id="viewCard" class="active" onclick="switchView('card')"><span>카드</span></button>
<button id="viewCat" onclick="switchView('category')"><span>카테고리</span></button>
</div>
</div>
<div class="tools-grid" id="toolsGrid">
<a href="/special-chars/server-time/" class="tool-card" data-keywords="서버 시간 확인 시간차 티켓팅 수강신청 예매 정각 시계" data-category="utility">
<div class="tool-icon">⏳</div>
<div class="tool-info"><div class="tool-name">서버 시간 확인기</div><div class="tool-desc">티켓팅/예매의 필수품 · 정각 알림음</div></div>
</a>
<a href="/special-chars/lotto-gen/" class="tool-card" data-keywords="로또 번호 추첨 추천 자동 당첨 제외수 고정수" data-category="utility">
<div class="tool-icon">🎰</div>
<div class="tool-info"><div class="tool-name">로또 번호 자동 추첨기</div><div class="tool-desc">스마트한 고정/제외수 옵션 추첨</div></div>
</a>
<a href="/special-chars/my-ip/" class="tool-card" data-keywords="내 아이피 IP 확인 주소 위치 정보" data-category="utility">
<div class="tool-icon">🌐</div>
<div class="tool-info"><div class="tool-name">내 IP 확인기</div><div class="tool-desc">접속 공인 IP 주소 및 정보 1초 확인</div></div>
</a>
<a href="/special-chars/" class="tool-card" data-keywords="특수 문자 이모지 특수기호 유니코드 기호 복사" data-category="utility">
<div class="tool-icon">⌨️</div>
<div class="tool-info"><div class="tool-name">특수문자 & 이모지</div><div class="tool-desc">클릭 한 번으로 특수 문자·이모지 복사</div></div>
</a>
<a href="/special-chars/char-counter/" class="tool-card" data-keywords="글자 수 계산기 바이트 텍스트 카운터 단어 문자수" data-category="convert">
<div class="tool-icon">📏</div>
<div class="tool-info"><div class="tool-name">글자 수 계산기</div><div class="tool-desc">글자·바이트·단어 수 실시간 계산</div></div>
</a>
<a href="/special-chars/date-calc/" class="tool-card" data-keywords="날짜 계산기 디데이 D-Day 기념일 만일 일수" data-category="date">
<div class="tool-icon">📅</div>
<div class="tool-info"><div class="tool-name">날짜/D-Day 계산기</div><div class="tool-desc">D-Day 계산, 날짜 더하기·빼기</div></div>
</a>
<a href="/special-chars/zodiac-calc/" class="tool-card" data-keywords="별자리 운세 성격 궁합 탄생 star zodiac 양자리 황소 쌍둥이 게 사자 처녀 천칭 전갈 사수 염소 물병 물고기" data-category="date">
<div class="tool-icon">⭐</div>
<div class="tool-info"><div class="tool-name">별자리 계산기</div><div class="tool-desc">생일로 별자리·성격·궁합 확인</div></div>
</a>
<a href="/special-chars/zodiac-animal/" class="tool-card" data-keywords="띠 십이지신 간지 갑자 동물 해 animal zodiac 쥐 소 호랑이 토끼 용 뱀 말 양 원숭이 닭 개 돼지" data-category="date">
<div class="tool-icon">🐉</div>
<div class="tool-info"><div class="tool-name">띠(십이지신) 계산기</div><div class="tool-desc">생년월일로 띠·오행·궁합 확인</div></div>
</a>
<a href="/special-chars/timezone-conv/" class="tool-card" data-keywords="시차 타임존 시간 변환 세계시간 timezone 뉴욕 런던 서울 도쿄 LA" data-category="date">
<div class="tool-icon">🌍</div>
<div class="tool-info"><div class="tool-name">타임존 변환기</div><div class="tool-desc">세계 주요 도시 시간 변환·시차 확인</div></div>
</a>
<a href="/special-chars/biz-day-calc/" class="tool-card" data-keywords="영업일 근무일 워킹데이 업무일 공휴일 business day 주말 제외" data-category="date">
<div class="tool-icon">🏢</div>
<div class="tool-info"><div class="tool-name">영업일 계산기</div><div class="tool-desc">주말·공휴일 제외 영업일 날짜 계산</div></div>
</a>
<a href="/special-chars/color-conv/" class="tool-card" data-keywords="색상 컬러 HEX RGB HSL 색 코드 color picker 팔레트" data-category="convert">
<div class="tool-icon">🎨</div>
<div class="tool-info"><div class="tool-name">색상 코드 변환기</div><div class="tool-desc">HEX·RGB·HSL 실시간 변환</div></div>
</a>
<a href="/special-chars/unit-conv/" class="tool-card" data-keywords="단위 변환기 평 제곱미터 온도 근 그램 신발 사이즈 직구" data-category="convert">
<div class="tool-icon">📐</div>
<div class="tool-info"><div class="tool-name">생활 단위 변환기</div><div class="tool-desc">부동산·요리·직구·디지털·여행 단위 변환</div></div>
</a>
<a href="/special-chars/quick-reply/" class="tool-card" data-keywords="빠른 답장 메신저 이메일 템플릿 복사 문구 업무" data-category="utility">
<div class="tool-icon">💬</div>
<div class="tool-info"><div class="tool-name">빠른 답장 도구</div><div class="tool-desc">자주 쓰는 답장 문구 저장 & 빠른 복사</div></div>
</a>
<a href="/special-chars/calculator/" class="tool-card" data-keywords="계산기 사칙연산 더하기 빼기 곱하기 나누기 calculator" data-category="calc">
<div class="tool-icon">🧮</div>
<div class="tool-info"><div class="tool-name">일반 계산기</div><div class="tool-desc">사칙연산·퍼센트·키보드 입력 지원</div></div>
</a>
<a href="/special-chars/compound-interest/" class="tool-card" data-keywords="복리 계산기 이자 주식 코인 투자 수익률 원금 compound interest" data-category="calc">
<div class="tool-icon">💰</div>
<div class="tool-info"><div class="tool-name">복리 계산기</div><div class="tool-desc">복리의 마법을 차트로 한눈에 확인</div></div>
</a>
<a href="/special-chars/speech-timer/" class="tool-card" data-keywords="발표시간 계산기 스크립트 프레젠테이션 발표 시간 말하기 속도 speech" data-category="convert">
<div class="tool-icon">🎤</div>
<div class="tool-info"><div class="tool-name">발표시간 계산기</div><div class="tool-desc">스크립트 붙여넣기 → 예상 발표 시간 자동 계산</div></div>
</a>
<a href="/special-chars/avg-price/" class="tool-card" data-keywords="물타기 불타기 평단가 계산기 코인 주식 추가매수 평균단가 averaging" data-category="calc">
<div class="tool-icon">📉</div>
<div class="tool-info"><div class="tool-name">물타기/불타기 계산기</div><div class="tool-desc">추가 매수 시 평단가 실시간 계산</div></div>
</a>
<a href="/special-chars/qr-code/" class="tool-card" data-keywords="QR 코드 생성기 큐알 바코드 URL 링크 qr code" data-category="utility">
<div class="tool-icon">📷</div>
<div class="tool-info"><div class="tool-name">QR 코드 생성기</div><div class="tool-desc">텍스트·URL을 QR 코드로 즉시 생성</div></div>
</a>
<a href="/special-chars/image-compress/" class="tool-card" data-keywords="이미지 용량 줄이기 사진 압축 리사이즈 jpg png 최적화" data-category="utility">
<div class="tool-icon">🗜️</div>
<div class="tool-info"><div class="tool-name">이미지 용량 줄이기</div><div class="tool-desc">브라우저에서 바로 사진 용량 압축</div></div>
</a>
<a href="/special-chars/wage-calc/" class="tool-card" data-keywords="시급 월급 연봉 환산기 급여 계산기 최저시급 알바 wage salary" data-category="calc">
<div class="tool-icon">💵</div>
<div class="tool-info"><div class="tool-name">시급 환산기</div><div class="tool-desc">시급·월급·연봉 자유롭게 환산</div></div>
</a>
<a href="/special-chars/prompt-gen/" class="tool-card" data-keywords="AI 프롬프트 자판기 생성기 ChatGPT Claude 질문 템플릿 prompt" data-category="utility">
<div class="tool-icon">🤖</div>
<div class="tool-info"><div class="tool-name">AI 프롬프트 자판기</div><div class="tool-desc">빈칸만 채우면 AI용 프롬프트 완성</div></div>
</a>
<a href="/special-chars/sub-calc/" class="tool-card" data-keywords="구독료 계산기 넷플릭스 유튜브 구독 지출 subscription 가랑비" data-category="calc">
<div class="tool-icon">💸</div>
<div class="tool-info"><div class="tool-name">구독료 팩폭 계산기</div><div class="tool-desc">매달 나가는 구독료, 모이면 얼마?</div></div>
</a>
<a href="/special-chars/calorie-calc/" class="tool-card" data-keywords="칼로리 계산기 다이어트 기초대사량 탄단지 BMR 식단" data-category="calc">
<div class="tool-icon">🔥</div>
<div class="tool-info"><div class="tool-name">칼로리 계산기</div><div class="tool-desc">다이어트 목표 칼로리 및 탄단지 비율 계산</div></div>
</a>
<a href="/special-chars/utm-builder/" class="tool-card" data-keywords="UTM 파라미터 구글 애널리틱스 마케팅 캠페인 추적 링크 utm_source utm_medium" data-category="utility">
<div class="tool-icon">🔗</div>
<div class="tool-info"><div class="tool-name">UTM 생성기</div><div class="tool-desc">마케팅 캠페인 URL에 UTM 추적 파라미터 추가</div></div>
</a>
<a href="/special-chars/pdf-tool/" class="tool-card" data-keywords="PDF 합치기 나누기 회전 순서 워터마크 문서 페이지 merge split" data-category="utility">
<div class="tool-icon">📄</div>
<div class="tool-info"><div class="tool-name">PDF 도구</div><div class="tool-desc">PDF 합치기·나누기·회전·워터마크</div></div>
</a>
<a href="/special-chars/emoji-mixer/" class="tool-card" data-keywords="이모지 합치기 믹서 이모티콘 짤 조합 emoji kitchen mixer 스티커" data-category="utility">
<div class="tool-icon">🎨</div>
<div class="tool-info"><div class="tool-name">이모지 합치기</div><div class="tool-desc">이모지 두 개를 합쳐 새로운 이모지 만들기</div></div>
</a>
<a href="/special-chars/discount-calc/" class="tool-card" data-keywords="할인 세금 부가세 VAT 가격 계산기 쇼핑 견적 discount tax 퍼센트" data-category="calc">
<div class="tool-icon">🏷️</div>
<div class="tool-info"><div class="tool-name">할인/세금 계산기</div><div class="tool-desc">할인율·부가세 적용 최종 가격 계산</div></div>
</a>
<a href="/special-chars/percent-calc/" class="tool-card" data-keywords="퍼센트 계산기 비율 변화율 증가율 할인율 percent calculator 백분율 비례" data-category="calc">
<div class="tool-icon">🔢</div>
<div class="tool-info"><div class="tool-name">퍼센트 계산기</div><div class="tool-desc">A의 B%·변화율·비율·역산 한 번에</div></div>
</a>
<a href="/special-chars/gpa-calc/" class="tool-card" data-keywords="학점 계산기 GPA 평점 대학교 성적 4.5 4.3 4.0 만점 grade point average" data-category="calc">
<div class="tool-icon">🎓</div>
<div class="tool-info"><div class="tool-name">학점 계산기</div><div class="tool-desc">대학교 GPA 계산 · 4.5/4.3/4.0 만점</div></div>
</a>
<a href="/special-chars/loan-calc/" class="tool-card" data-keywords="대출 이자 계산기 원리금균등 원금균등 만기일시 상환 월 납입금 모기지 주택담보 loan mortgage" data-category="calc">
<div class="tool-icon">🏦</div>
<div class="tool-info"><div class="tool-name">대출이자 계산기</div><div class="tool-desc">상환 방식별 월 납입금·총 이자 비교</div></div>
</a>
<a href="/special-chars/bmi-calc/" class="tool-card" data-keywords="BMI 계산기 체질량지수 비만도 체중 키 몸무게 비만 과체중 body mass index" data-category="calc">
<div class="tool-icon">📊</div>
<div class="tool-info"><div class="tool-name">BMI 계산기</div><div class="tool-desc">체질량지수 측정 · 비만도 판정</div></div>
</a>
<a href="/special-chars/timer/" class="tool-card" data-keywords="타이머 스톱워치 카운트다운 랩 알람 timer stopwatch 뽀모도로 시간 측정" data-category="utility">
<div class="tool-icon">⏱️</div>
<div class="tool-info"><div class="tool-name">타이머/스톱워치</div><div class="tool-desc">카운트다운 타이머 + 랩 기록 스톱워치</div></div>
</a>
<a href="/special-chars/password-gen/" class="tool-card" data-keywords="비밀번호 생성기 패스워드 암호 보안 password generator 랜덤" data-category="utility">
<div class="tool-icon">🔐</div>
<div class="tool-info"><div class="tool-name">비밀번호 생성기</div><div class="tool-desc">안전한 랜덤 비밀번호 즉시 생성</div></div>
</a>
<a href="/special-chars/korean-english-converter/" class="tool-card" data-keywords="한영 타자 변환 키보드 영타 한타 변환기 korean english converter" data-category="convert">
<div class="tool-icon">⌨️</div>
<div class="tool-info"><div class="tool-name">한영 타자 변환기</div><div class="tool-desc">영타로 친 한글, 한타로 친 영어 변환</div></div>
</a>
<a href="/special-chars/base64-tool/" class="tool-card" data-keywords="Base64 인코더 디코더 인코딩 디코딩 텍스트 이미지 변환 base64 encoder decoder" data-category="utility">
<div class="tool-icon">🔣</div>
<div class="tool-info"><div class="tool-name">Base64 인코더/디코더</div><div class="tool-desc">텍스트·이미지를 Base64로 변환</div></div>
</a>
<a href="/special-chars/image-format-converter/" class="tool-card" data-keywords="이미지 포맷 변환 JPG PNG WebP GIF 파일 형식 image format converter" data-category="convert">
<div class="tool-icon">🖼️</div>
<div class="tool-info"><div class="tool-name">이미지 포맷 변환기</div><div class="tool-desc">JPG, PNG, WebP, GIF 간 형식 변환</div></div>
</a>
<a href="/special-chars/pet-age-calc/" class="tool-card" data-keywords="반려동물 나이 계산기 강아지 고양이 사람 나이 환산 pet age calculator 댕댕이" data-category="pet">
<div class="tool-icon">🐾</div>
<div class="tool-info"><div class="tool-name">반려동물 나이 계산기</div><div class="tool-desc">강아지·고양이 → 사람 나이 환산</div></div>
</a>
<a href="/special-chars/pet-food-calc/" class="tool-card" data-keywords="사료 급여량 계산기 강아지 고양이 칼로리 사료량 반려동물 먹이 pet food calculator" data-category="pet">
<div class="tool-icon">🍖</div>
<div class="tool-info"><div class="tool-name">사료 급여량 계산기</div><div class="tool-desc">체중·활동량 기반 하루 사료량 계산</div></div>
</a>
<a href="/special-chars/pet-bmi-calc/" class="tool-card" data-keywords="반려동물 체중 관리 BMI BCS 강아지 고양이 비만 체형 점수 pet weight" data-category="pet">
<div class="tool-icon">⚖️</div>
<div class="tool-info"><div class="tool-name">반려동물 체중 관리</div><div class="tool-desc">BCS 체형 평가 · 품종별 표준 체중</div></div>
</a>
<a href="/special-chars/fuel-calc/" class="tool-card" data-keywords="유류비 계산기 기름값 주유비 연비 휘발유 경유 LPG 주유 N빵 교통비 fuel cost" data-category="calc">
<div class="tool-icon">⛽</div>
<div class="tool-info"><div class="tool-name">유류비 계산기</div><div class="tool-desc">거리·연비·유가로 유류비 N빵 계산</div></div>
</a>
<a href="/special-chars/bg-remover/" class="tool-card" data-keywords="누끼 배경 제거 이미지 배경제거 background removal AI 투명 png 따기" data-category="utility">
<div class="tool-icon">✂️</div>
<div class="tool-info"><div class="tool-name">이미지 배경(누끼) 제거</div><div class="tool-desc">AI 배경 제거 · 서버 전송 없이 로컬 처리</div></div>
</a>
<a href="/special-chars/broker-fee-calc/" class="tool-card" data-keywords="부동산 중개수수료 중개보수 복비 매매 전세 월세 주택 상가 오피스텔 요율 계산기" data-category="calc">
<div class="tool-icon">🏠</div>
<div class="tool-info"><div class="tool-name">부동산 중개수수료 계산기</div><div class="tool-desc">매매·전세·월세 중개보수 자동 계산</div></div>
</a>
<a href="/special-chars/taxi-calc/" class="tool-card" data-keywords="택시비 계산기 택시 요금 예상 심야할증 중형 대형 모범 전국 지역별" data-category="calc">
<div class="tool-icon">🚕</div>
<div class="tool-info"><div class="tool-name">택시비 계산기</div><div class="tool-desc">전국 지역별 택시비 · 심야할증 계산</div></div>
</a>
<a href="/special-chars/music-calc/" class="tool-card" data-keywords="음악 계산기 BPM 탭 측정 딜레이 타이밍 곡 길이 마디 음정 Hz 주파수 키변환 트랜스포즈 DAW 프로듀서" data-category="calc">
<div class="tool-icon">🎵</div>
<div class="tool-info"><div class="tool-name">음악 계산기</div><div class="tool-desc">BPM 측정·딜레이·음정·Hz·키 변환</div></div>
</a>
</div>
<!-- 카테고리 뷰 (기본 숨김) -->
<div id="categoryView"></div>
<div style="max-width:960px;margin:0 auto;padding:0 20px 16px;">
<button class="faq-toggle-btn" id="toolsToggleBtn" onclick="toggleToolsSection()">전체 도구 접기 ▲</button>
</div>
<div class="no-results" id="noResults">🔍 검색 결과가 없습니다</div>
<!-- 팁 섹션 -->
<div class="tip-section">
<div class="tip-card">
<div class="tip-icon">💡</div>
<div class="tip-text"><span class="tip-label">알고 계셨나요?</span> <span id="tipContent"></span></div>
</div>
</div>
<footer>
<div class="footer-links">
<a href="https://www.instagram.com/seon_7yu/" target="_blank" rel="noopener">
<svg style="width:14px;height:14px;" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.45 2.525c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z" clip-rule="evenodd"/></svg>
<span>@seon_7yu</span>
</a>
<span style="color:#475569;">·</span>
<a href="https://ctee.kr/place/teemozipsa/post/2" target="_blank" rel="noopener">
<span style="line-height:1;margin-bottom:2px">☕</span> <span>후원하기</span>
</a>
<span style="color:#475569;">·</span>
<a href="/about.html">사이트 소개</a>
<span style="color:#475569;">·</span>
<a href="/editorial-policy.html">편집정책</a>
<span style="color:#475569;">·</span>
<a href="/contact.html">문의</a>
<span style="color:#475569;">·</span>
<a href="/privacy.html">개인정보처리방침</a>
<span style="color:#475569;">·</span>
<a href="/en/"><span style="font-size:13px;line-height:1;margin-bottom:1px">🌐</span> <span>English</span></a>
</div>
© 2026 teemoZipsa. All rights reserved.
</footer>
<script>
// === localStorage 안전 래퍼 ===
function safeGet(key, fallback) { try { return localStorage.getItem(key); } catch(e) { return fallback !== undefined ? fallback : null; } }
function safeSet(key, val) { try { localStorage.setItem(key, val); } catch(e) {} }
// === 오늘의 정보 위젯 ===
const FB_DB = 'https://teemozipsa-default-rtdb.firebaseio.com';
let globalVisitCount = null;
// Firebase에서 방문 수 가져오기 + 24시간당 1회 증가 (localStorage 기반)
(function initVisitCounter() {
const lastVisitKey = 'last_visit_timestamp';
const lastVisit = localStorage.getItem(lastVisitKey);
const now = Date.now();
const oneDay = 24 * 60 * 60 * 1000; // 24시간 (밀리초)
// 마지막 방문 접속 기록이 없거나, 24시간 이상 지난 경우에만 카운트 증가
if (!lastVisit || (now - parseInt(lastVisit, 10)) > oneDay) {
// 현재 값 읽고 +1 증가 (REST API)
fetch(FB_DB + '/stats/visitCount.json')
.then(r => r.json())
.then(count => {
globalVisitCount = (count || 0) + 1;
fetch(FB_DB + '/stats/visitCount.json', {
method: 'PUT',
body: JSON.stringify(globalVisitCount)
});
// localStorage에 현재 접속 시간을 도장처럼 찍어둡니다
localStorage.setItem(lastVisitKey, now.toString());
updateVisitDisplay();
})
.catch(() => { globalVisitCount = null; updateVisitDisplay(); });
} else {
// 24시간 이내에 이미 방문했던 브라우저: 카운트를 올리지 않고 값만 읽어옴
fetch(FB_DB + '/stats/visitCount.json')
.then(r => r.json())
.then(count => { globalVisitCount = count || 0; updateVisitDisplay(); })
.catch(() => { globalVisitCount = null; updateVisitDisplay(); });
}
})();
function updateVisitDisplay() {
const el = document.getElementById('todayRemain');
if (!el) return;
const now = new Date();
const y = now.getFullYear();
const startOfYear = new Date(y, 0, 1);
const dayOfYear = Math.ceil((now - startOfYear) / 86400000);
const isLeap = (y % 4 === 0 && y % 100 !== 0) || y % 400 === 0;
const remaining = (isLeap ? 366 : 365) - dayOfYear;
const visitText = globalVisitCount !== null ? ` · 총 방문 ${globalVisitCount.toLocaleString()}회` : '';
el.textContent = `올해 ${remaining}일 남음${visitText}`;
}
function updateToday() {
const now = new Date();
const weekdays = ['일', '월', '화', '수', '목', '금', '토'];
const y = now.getFullYear(), m = now.getMonth() + 1, d = now.getDate();
document.getElementById('todayDate').textContent = `${y}년 ${m}월 ${d}일 ${weekdays[now.getDay()]}요일`;
const startOfYear = new Date(y, 0, 1);
const dayOfYear = Math.ceil((now - startOfYear) / 86400000);
document.getElementById('todaySub').textContent = `${y}년의 ${dayOfYear}번째 날`;
const hh = String(now.getHours()).padStart(2, '0');
const mm2 = String(now.getMinutes()).padStart(2, '0');
const ss = String(now.getSeconds()).padStart(2, '0');
document.getElementById('todayClock').textContent = `${hh}:${mm2}:${ss}`;
updateVisitDisplay();
}
updateToday();
setInterval(updateToday, 1000);
// === 팁 로테이션 ===
const TIPS = [
// 단위 변환
'1평은 약 3.3㎡입니다. 방 크기를 ㎡로 환산할 때 유용해요!',
'1마일은 약 1.6km입니다. 미국 도로 표지판 읽을 때 기억하세요.',
'100℃는 212℉입니다. 미국 레시피를 따라 할 때 참고하세요.',
'1파운드(lb)는 약 453g입니다. 해외 직구 시 무게 계산에 활용하세요.',
'1oz(온스)는 약 29.6ml입니다. 해외 음료 용량 환산에 유용해요.',
'1인치는 2.54cm입니다. TV·모니터 크기 비교할 때 유용해요.',
'1갤런은 약 3.79리터입니다. 미국 주유소에서 참고하세요.',
'1에이커는 약 4,047㎡, 약 1,224평입니다.',
'1해리(nautical mile)는 약 1.852km입니다. 항공·해상 거리 단위예요.',
'1피트(ft)는 약 30.5cm입니다. 키를 피트로 환산할 때 참고하세요.',
'1야드는 약 91.4cm입니다. 골프에서 자주 쓰이는 단위예요.',
// 무게·부피
'고기 1근은 600g, 채소 1근은 400g으로 서로 다릅니다.',
'1큰술(T)은 15ml, 1컵은 200ml입니다. 요리할 때 기억하세요!',
'밀가루 1컵은 약 110g, 설탕 1컵은 약 200g으로 재료마다 다릅니다.',
'버터 1스틱은 약 113g(미국 기준)입니다.',
'1톤은 1,000kg, 미국의 1숏톤(short ton)은 약 907kg입니다.',
// 신발·의류
'한국 신발 270mm = 미국 남성 US 8 = 유럽 EU 42입니다.',
'미국 여성 신발 US 7 = 한국 240mm = 유럽 EU 38입니다.',
// 금융·경제
'복리의 72법칙: 수익률로 72를 나누면 원금이 2배가 되는 햇수를 알 수 있어요.',
'2026년 최저시급은 10,320원입니다.',
'2026년 최저시급 기준 월급(209시간)은 약 215만 원입니다.',
'연봉 3,000만 원의 실수령액은 월 약 220만 원 내외입니다 (4대보험·세금 공제 후).',
'주식 물타기: 평단가 = (총 매수금액) ÷ (총 수량)으로 계산합니다.',
'적금 이자에도 15.4%의 이자소득세가 붙습니다.',
'1달러 ≈ 약 1,450원 (2026년 초 기준, 환율은 수시 변동).',
// IT·디지털
'한글 1글자는 UTF-8로 3바이트, EUC-KR로 2바이트입니다.',
'QR 코드는 최대 4,296자의 영숫자를 담을 수 있습니다.',
'72DPI에서 1인치(72px)는 정확히 25.4mm입니다.',
'Full HD(1920×1080)와 4K(3840×2160)는 해상도가 정확히 4배 차이입니다.',
'1GB = 1,024MB이지만, 저장장치 제조사는 1,000MB로 계산해서 실제 용량이 적어 보여요.',
'RGB #000000은 검정, #FFFFFF는 흰색입니다. 16진수 색상 코드의 기본이에요.',
'Wi-Fi 주파수 2.4GHz는 범위가 넓고, 5GHz는 속도가 빠릅니다.',
'PDF 용량이 크다면 이미지 해상도를 150DPI로 낮추면 크게 줄어듭니다.',
// 생활 상식
'D-Day 계산 시 "초일 산입"을 체크하면 시작일도 1일로 포함됩니다.',
'카페인 하루 권장 섭취량은 성인 기준 400mg 이하입니다 (커피 약 3~4잔).',
'성인 하루 권장 수분 섭취량은 약 2리터(8잔)입니다.',
'비행기 기내 반입 액체류는 개당 100ml, 총 1리터까지 가능합니다.',
'국제전화 국가번호: 한국 +82, 미국 +1, 일본 +81, 중국 +86입니다.',
'택배 부피무게 계산: 가로×세로×높이(cm) ÷ 6,000 = kg입니다.',
// 한국 특화
'전용면적 25평(약 84㎡)은 아파트 국민평형이라 불립니다.',
'1psi는 약 0.069bar입니다. 타이어 공기압 확인 시 참고하세요.',
'한국 표준시(KST)는 UTC+9로, 일본과 같은 시간대입니다.',
'대한민국 법정 공휴일은 연 15일이지만, 대체공휴일로 늘어날 수 있어요.',
'아파트 전용면적은 벽 안쪽, 공급면적은 복도·계단 등을 포함한 넓이입니다.',
// 도구 관련 알쓸신잡
'강아지와 고양이의 정상 체온은 38~39도로 사람보다 약간 더 높아요.',
'티켓팅에 쓰는 서버 시간은 내 기기가 아닌 해당 사이트 서버의 고유 시계를 뜻합니다.',
'나눔로또 1등 당첨 확률은 8,145,060분의 1입니다.',
'비밀번호를 영문 대소문자+숫자+특수문자 조합으로 12자 이상 만들면 해킹에 수백 년이 걸립니다.',
'WebP 이미지 포맷은 화질 손상 없이 원본 JPEG보다 30% 이상 용량을 획기적으로 줄여줍니다.'
];
document.getElementById('tipContent').textContent = TIPS[Math.floor(Math.random() * TIPS.length)];
// === 업데이트 배너 ===
const BANNER_ID = 'feedback-v1';
if (!safeGet('banner_dismissed_' + BANNER_ID)) {
document.getElementById('updateBanner').style.display = '';
}
function dismissBanner() {
document.getElementById('updateBanner').style.display = 'none';
safeSet('banner_dismissed_' + BANNER_ID, '1');
}
// === 즐겨찾기 ===
let favorites = JSON.parse(safeGet('favorites') || '[]');
function toggleFav(href, e) {
e.preventDefault();
e.stopPropagation();
const idx = favorites.indexOf(href);
if (idx >= 0) favorites.splice(idx, 1);
else favorites.push(href);
safeSet('favorites', JSON.stringify(favorites));
renderFavButtons();
renderFavGrid();
}
function renderFavButtons() {
document.querySelectorAll('#toolsGrid .tool-card').forEach(card => {
let btn = card.querySelector('.fav-btn');
if (!btn) {
btn = document.createElement('button');
btn.className = 'fav-btn';
btn.setAttribute('aria-label', '즐겨찾기');
btn.onclick = (e) => toggleFav(card.href, e);
card.appendChild(btn);
}
const isFav = favorites.includes(card.href);
btn.textContent = isFav ? '★' : '☆';
btn.classList.toggle('active', isFav);
// 즐겨찾기된 도구는 전체 도구에서 숨기기
card.style.display = isFav ? 'none' : '';
});
}
function renderFavGrid() {
const grid = document.getElementById('favGrid');
const label = document.getElementById('favLabel');
grid.innerHTML = '';
if (favorites.length === 0) { label.classList.remove('visible'); return; }
label.classList.add('visible');
const allCards = document.querySelectorAll('#toolsGrid .tool-card');
favorites.forEach(href => {
for (const card of allCards) {
if (card.href === href) {
const clone = card.cloneNode(true);
clone.style.display = ''; // cloneNode가 display:none도 복사하므로 리셋
clone.querySelector('.fav-btn')?.remove();
// 즐겨찾기 카드에 별 해제 버튼 추가
const unfavBtn = document.createElement('button');
unfavBtn.className = 'fav-btn active';
unfavBtn.textContent = '★';
unfavBtn.setAttribute('aria-label', '즐겨찾기 해제');
unfavBtn.onclick = (e) => toggleFav(href, e);
clone.appendChild(unfavBtn);
clone.onclick = (e) => { if (!e.target.closest('.fav-btn')) trackRecent(href); };
grid.appendChild(clone);
break;
}
}
});
}
// === 드래그 앤 드롭 즐겨찾기 ===
(function() {
var toolsGrid = document.getElementById('toolsGrid');
var favDropZone = document.getElementById('favDropZone');
var favLabel = document.getElementById('favLabel');
var dragSource = null; // 'tools' or 'fav'
var dragHref = null;
var moved = false;
function addFav(href) {
if (!href || favorites.includes(href)) return;
favorites.push(href);
safeSet('favorites', JSON.stringify(favorites));
renderFavButtons();
renderFavGrid();
makeDraggable();
}
function removeFav(href) {
var idx = favorites.indexOf(href);
if (idx < 0) return;
favorites.splice(idx, 1);
safeSet('favorites', JSON.stringify(favorites));
renderFavButtons();
renderFavGrid();
makeDraggable();
}
function makeDraggable() {
toolsGrid.querySelectorAll('.tool-card').forEach(function(c) { c.setAttribute('draggable', 'true'); });
document.querySelectorAll('#favGrid .tool-card').forEach(function(c) { c.setAttribute('draggable', 'true'); });
}
makeDraggable();
// Observe favGrid changes to re-apply draggable
var obs = new MutationObserver(makeDraggable);
obs.observe(document.getElementById('favGrid'), { childList: true });
// --- dragstart ---
document.addEventListener('dragstart', function(e) {
var card = e.target.closest('.tool-card');
if (!card || card.getAttribute('draggable') !== 'true') return;
moved = false;
dragHref = card.href;
card.classList.add('dragging');
e.dataTransfer.effectAllowed = 'move';
e.dataTransfer.setData('text/plain', card.href);
if (card.closest('#favGrid')) {
dragSource = 'fav';
} else {
dragSource = 'tools';
setTimeout(function() { favLabel.classList.add('visible'); }, 50);
}
});
// --- dragend: if dragged from fav and not dropped back into fav, unfavorite ---
document.addEventListener('dragend', function(e) {
document.querySelectorAll('.dragging').forEach(function(c) { c.classList.remove('dragging'); });
// If dragged from favorites and not reordered within fav, remove from favorites
if (dragSource === 'fav' && !moved && dragHref) {
removeFav(dragHref);
}
if (favorites.length === 0) favLabel.classList.remove('visible');
dragSource = null;
dragHref = null;
});
// --- favDropZone: accept cards from tools ---
favDropZone.addEventListener('dragover', function(e) {
if (dragSource !== 'tools') return;
e.preventDefault();
e.dataTransfer.dropEffect = 'move';