-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
1219 lines (1114 loc) · 57 KB
/
Copy pathabout.html
File metadata and controls
1219 lines (1114 loc) · 57 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Triple On Design 소개와 문의 안내. 과학·기술 분야를 위한 3D 인터랙티브, 브랜딩, 프레젠테이션 디자인 스튜디오입니다.">
<meta property="og:title" content="About — Triple On Design">
<meta property="og:description" content="Triple On Design 스튜디오 소개와 프로젝트 문의 안내.">
<meta property="og:image" content="https://tripleondesign.com/TODog.jpg">
<meta property="og:url" content="https://tripleondesign.com/about.html">
<link rel="canonical" href="https://tripleondesign.com/about.html">
<title>About — TripleOnDesign</title>
<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=Inter:wght@100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css?v=16">
<style>
.work-modal-trigger {
cursor: pointer;
}
/* Contact 섹션: 이메일 보내기 & 카카오톡 문의하기 버튼 — 두 줄 세로 스택, 동일 크기 */
#contact .contact-actions {
display: flex;
flex-direction: column; /* 항상 세로로 쌓음 (PC·모바일 공통) */
gap: 12px;
align-items: stretch;
}
#contact .contact-actions > .email-direct-btn,
#contact .contact-actions > .kakao-chat-button-wrap {
width: 100%;
display: flex;
}
#contact .email-direct-btn,
#contact .kakao-contact-btn {
width: 100%;
min-height: 52px;
box-sizing: border-box;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 20px;
font-size: 15px;
line-height: 1.2;
margin: 0;
white-space: nowrap;
}
#contact .email-direct-btn__icon,
#contact .kakao-contact-btn__icon {
width: 22px;
height: 22px;
flex-shrink: 0;
display: inline-flex;
align-items: center;
justify-content: center;
}
/* iOS Safari fix: flex 컨테이너 안의 SVG/IMG가 viewBox만으로 0x0이 되는 버그 방지 */
#contact .email-direct-btn__icon > svg,
#contact .email-direct-btn__icon > img,
#contact .kakao-contact-btn__icon > svg,
#contact .kakao-contact-btn__icon > img {
width: 100%;
height: 100%;
display: block;
}
/* 글라스모피즘 — 두 버튼 동일.
style.css 가 .email-direct-btn 만 덮는 상황에서 카카오 버튼이 안 보이지 않도록
특이도를 한 단계 올리고(!important 포함) 알파 값도 또렷하게 조정. */
#contact .contact-actions .email-direct-btn,
#contact .contact-actions .kakao-contact-btn {
background: rgba(255, 255, 255, 0.1) !important;
border: 1px solid rgba(255, 255, 255, 0.22) !important;
border-radius: 14px !important;
color: inherit !important;
text-decoration: none !important;
font-weight: 500 !important;
cursor: pointer;
backdrop-filter: blur(14px) saturate(140%) !important;
-webkit-backdrop-filter: blur(14px) saturate(140%) !important;
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.14),
0 6px 22px rgba(0, 0, 0, 0.22) !important;
transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
#contact .contact-actions .email-direct-btn:hover,
#contact .contact-actions .kakao-contact-btn:hover {
background: rgba(255, 255, 255, 0.16) !important;
border-color: rgba(255, 255, 255, 0.32) !important;
}
#contact .contact-actions .email-direct-btn:active,
#contact .contact-actions .kakao-contact-btn:active {
transform: translateY(1px);
}
/* About 섹션: 카드 그리드 시작 전과 Show Works 버튼 전에 각 5px 여백 확보.
이전 턴에서 4곳을 모두 줄여 너무 조여 보이던 것을
(title 아래)·(works-cta 위)만 살짝 조이고, (그리드 위)·(버튼 위)에는 여백을 넣음. */
#about .about-title-row {
margin-bottom: -2px;
}
#about .about-intro {
margin-bottom: 5px;
}
#about .about-grid {
margin-bottom: 5px;
}
#about .works-cta {
margin-top: 3px;
}
/* ===========================================================
About 섹션 CTA 버튼 그룹 — SHOW WORKS + PRICE POLICY
- 기존 .works-cta-btn 클래스를 사용하지 않고
완전히 새로운 .about-action-btn 클래스로 처음부터 정의
- 슬라이딩/호버 텍스트 등장 효과 일절 없음
- 텍스트는 항상 또렷하게 보임 (호버 없이도 가독)
- 데스크톱: 가로 나란히 (간격 32px)
- 모바일: 세로 스택, 동일 너비 (간격 18px)
=========================================================== */
#about .works-cta {
display: flex;
flex-direction: row;
gap: 32px;
justify-content: center;
align-items: stretch;
flex-wrap: wrap;
}
/* 외부 CSS의 ::before/::after 슬라이딩 효과 차단 */
#about .works-cta .about-action-btn::before,
#about .works-cta .about-action-btn::after {
content: none !important;
display: none !important;
}
#about .works-cta .about-action-btn {
flex: 0 1 220px;
min-height: 56px;
box-sizing: border-box;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 16px 28px;
font-family: 'Inter', sans-serif;
font-size: 14.5px;
font-weight: 600;
letter-spacing: 0.14em;
line-height: 1;
text-transform: uppercase;
color: #ffffff;
text-decoration: none;
white-space: nowrap;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.24);
border-radius: 14px;
backdrop-filter: blur(14px) saturate(140%);
-webkit-backdrop-filter: blur(14px) saturate(140%);
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.14),
0 6px 22px rgba(0, 0, 0, 0.22);
cursor: pointer;
transition: background 0.2s ease, border-color 0.2s ease;
}
#about .works-cta .about-action-btn .label {
color: #ffffff;
opacity: 1;
}
#about .works-cta .about-action-btn .arrow {
color: #ffffff;
opacity: 1;
font-size: 17px;
font-weight: 400;
line-height: 1;
margin-left: 2px;
}
#about .works-cta .about-action-btn:hover {
background: rgba(255, 255, 255, 0.16);
border-color: rgba(255, 255, 255, 0.36);
}
#about .works-cta .about-action-btn:active {
background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 700px) {
#about .works-cta {
flex-direction: column;
align-items: stretch;
gap: 18px;
}
#about .works-cta .about-action-btn {
flex: 1 1 auto;
width: 100%;
min-width: 0;
}
}
/* ===========================================================
Price Policy 모달 — about.html 내 임베드, iframe으로 로드
=========================================================== */
.price-modal-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.78);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
z-index: 10000;
align-items: center;
justify-content: center;
padding: 24px;
animation: priceFade 0.2s ease;
}
.price-modal-overlay.is-open { display: flex; }
@keyframes priceFade {
from { opacity: 0; }
to { opacity: 1; }
}
.price-modal {
background: #0A0A0A;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 14px;
width: 100%;
max-width: 1240px;
height: 90vh;
position: relative;
overflow: hidden;
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.price-modal-iframe {
width: 100%;
height: 100%;
border: 0;
background: #0A0A0A;
display: block;
}
.price-modal-close {
position: absolute;
top: 14px;
right: 14px;
background: rgba(0, 0, 0, 0.7);
border: 1px solid rgba(255, 255, 255, 0.22);
color: #ffffff;
width: 38px;
height: 38px;
border-radius: 50%;
cursor: pointer;
font-size: 20px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
transition: background 0.2s ease, border-color 0.2s ease;
}
.price-modal-close:hover {
background: rgba(0, 0, 0, 0.9);
border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 700px) {
.price-modal-overlay { padding: 0; }
.price-modal {
height: 100vh;
max-width: 100%;
border-radius: 0;
border-left: 0;
border-right: 0;
}
}
/* ===========================================================
반응형 레이아웃 오버라이드 — 외부 style.css의 고정 max-width/padding을
덮어 PC 폭(1024~2560px)에 따라 컨테이너·그리드·여백이
자연스럽게 호흡하도록 조정.
=========================================================== */
main #about,
main #contact {
padding-left: clamp(20px, 4vw, 64px);
padding-right: clamp(20px, 4vw, 64px);
}
main #about .about-container,
main #contact .contact-container {
width: 100%;
max-width: clamp(960px, 88vw, 1440px);
margin-left: auto;
margin-right: auto;
box-sizing: border-box;
}
/* About intro: 본문 폭 전폭 확장 + 좌측 정렬 */
main #about .about-intro,
main #about .about-intro-kr-box {
max-width: none !important;
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
text-align: left;
}
main #about .about-intro-kr-box p {
max-width: none !important;
width: 100%;
margin-left: 0 !important;
margin-right: 0 !important;
text-align: left;
}
/* About 카드: 세로 스택 + 각 카드 내부 좌(제목+gif) / 우(설명) 2분할 */
main #about .about-grid {
display: flex !important;
flex-direction: column !important;
gap: clamp(48px, 6vw, 96px) !important;
grid-template-columns: none !important;
}
main #about .about-card {
display: grid !important;
/* 두 컬럼을 콘텐츠 너비로만 잡고 그리드 자체를 페이지 가운데로 정렬
→ GIF + 설명문 쌍이 페이지 중앙에 모여 보임.
h3는 좌측 컬럼 안에서 기존 정렬(justify-self: center) 그대로 유지 */
grid-template-columns: 450px minmax(280px, 60ch) !important;
grid-template-rows: auto auto !important;
column-gap: clamp(40px, 5vw, 96px) !important;
row-gap: 18px !important;
align-items: start !important;
justify-content: center !important; /* 그리드 전체를 카드 가로 중앙 */
width: 100% !important;
max-width: none !important;
margin: 0 !important;
box-sizing: border-box;
padding: clamp(20px, 2.5vw, 36px) 0 !important;
}
main #about .about-card h3 {
grid-column: 1;
grid-row: 1;
margin: 0 !important;
justify-self: center; /* 좌측 컬럼 가로 중앙 */
text-align: center;
}
/* ============ GIF 프레임 — 잘림 방지 ============
기존 외부 style.css가 .gif-trigger를 300x300 + overflow:hidden로 잡고
있어 1.5배 키운 img가 잘려 보였음.
- .gif-trigger 컨테이너 자체를 450×450으로 강제 확장
- aspect-ratio 1/1로 정사각형 보장
- overflow는 hidden 유지(라운드 코너·오버레이 효과 보존)
- img는 컨테이너 전체를 채우되 object-fit:cover로 균일하게 표시 */
main #about .about-card .gif-trigger {
grid-column: 1;
grid-row: 2;
justify-self: center; /* 좌측 컬럼 가로 중앙 */
margin: 0 !important;
width: 450px !important;
height: 450px !important;
aspect-ratio: 1 / 1 !important;
max-width: 100% !important;
min-width: 0 !important;
min-height: 0 !important;
flex: 0 0 auto !important;
overflow: hidden;
position: relative;
}
main #about .about-card .gif-trigger img,
main #about .about-card .gif-trigger img[width="300"][height="300"] {
width: 100% !important;
height: 100% !important;
max-width: none !important;
max-height: none !important;
object-fit: cover !important;
display: block !important;
}
main #about .about-card .desc-kr {
grid-column: 2;
grid-row: 1 / span 2;
align-self: center; /* 세로 중앙 (GIF 높이에 맞춤) */
justify-self: center; /* 우측 컬럼 가로 중앙 */
text-align: left; /* 단락 가독성 위해 본문은 좌측 정렬 유지 */
margin: 0 !important;
max-width: 60ch;
width: 100%;
}
/* Contact 섹션 — About과 충분히 떨어뜨려 여유 있게 배치 */
main #contact {
margin-top: clamp(96px, 12vw, 220px) !important;
padding-top: clamp(48px, 6vw, 96px) !important;
padding-bottom: clamp(64px, 8vw, 128px) !important;
}
main #contact .contact-body {
display: grid;
grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
gap: clamp(24px, 3vw, 56px);
align-items: start;
margin-top: clamp(28px, 3vw, 48px);
}
main #contact .contact-info-area,
main #contact .chat-container {
width: 100%;
max-width: none;
min-width: 0;
box-sizing: border-box;
}
main #contact .chat-container {
min-height: clamp(420px, 60vh, 640px);
}
/* Works CTA — 더 크게, 가운데 정렬, 두 버튼 사이 넉넉한 간격 */
#about .works-cta {
margin-top: clamp(56px, 7vw, 120px) !important;
justify-content: center !important; /* 가운데 정렬 */
gap: clamp(36px, 4.5vw, 80px) !important; /* 두 버튼 사이 여유 있는 간격 */
}
#about .works-cta .about-action-btn {
flex: 0 0 auto !important;
min-height: 88px !important; /* 72 → 88 */
padding: 28px 56px !important; /* 22/40 → 28/56 */
font-size: 19px !important; /* 17 → 19 */
letter-spacing: 0.18em !important;
border-radius: 22px !important; /* 18 → 22 */
}
#about .works-cta .about-action-btn .arrow {
font-size: 24px !important; /* 21 → 24 */
}
/* 1080px 이하: contact 2단 → 1단 스택 */
@media (max-width: 1080px) {
main #contact .contact-body {
grid-template-columns: 1fr;
}
}
/* 모바일 (700px 이하) */
@media (max-width: 700px) {
main #about,
main #contact {
padding-left: 16px;
padding-right: 16px;
}
main #about .about-container,
main #contact .contact-container {
max-width: 100%;
}
main #about .about-card {
grid-template-columns: 1fr !important;
grid-template-rows: auto auto auto !important;
row-gap: 14px !important;
padding: 0 !important;
}
main #about .about-card h3 {
margin: 0 !important;
}
main #about .about-card .gif-trigger {
margin: 0 !important;
width: 100% !important;
max-width: 360px !important;
height: auto !important;
aspect-ratio: 1 / 1 !important;
}
main #about .about-card .desc-kr {
grid-column: 1;
grid-row: 3;
align-self: start;
max-width: none;
}
#about .works-cta {
margin-top: clamp(40px, 8vw, 64px) !important;
flex-direction: column !important;
align-items: stretch !important;
}
#about .works-cta .about-action-btn {
width: 100% !important;
min-width: 0 !important;
}
}
</style>
</head>
<body>
<header>
<a href="index.html" class="logo">
<video autoplay muted loop playsinline>
<source src="logo.mp4" type="video/mp4">
</video>
</a>
<nav>
<ul>
<li><a href="about.html" class="active">About</a></li>
<li><a href="works.html">Works</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<div class="about-container">
<div class="about-title-row reveal-up">
<h2 class="about-title">About TRIPLE ON DESIGN :</h2>
</div>
<div class="about-intro reveal-up" style="transition-delay: 0.15s;">
<div class="about-intro-kr-box">
<p><strong class="about-tagline">CREATE BEYOND.</strong> TOD는 과학과 기술의 경계를 넓히는 이들을 위한 Creative Design Studio입니다. TOD는 디자인의 경계를 넘어 탁월한 연구와 혁신에 걸맞는 소통을 추구합니다. 정제된 미학과 3D 인터랙티브 비주얼, 목적 중심의 스토리텔링으로 복잡한 성과를 생생한 경험으로 전환하고, 그것을 변화시킬 세계와 연결합니다. TOD는 수익금의 31%를 국내외 도움이 필요한 곳곳에 나누는 Blessing Center입니다.</p>
</div>
</div>
<div class="about-grid">
<div class="about-card reveal-up" style="transition-delay: 0.3s;">
<h3>GRAPHIC ON.</h3>
<div class="gif-trigger" data-file="protein.html">
<img src="graphic.gif" alt="Graphic ON preview" width="300" height="300">
<div class="gif-overlay">
<p class="gif-overlay-kr">클릭하시면 3D interactive model을<br>경험하실 수 있습니다.</p>
</div>
</div>
<p class="desc-kr"><span class="kr-word">온전.</span> 훌륭한 성과는 온전하게 전달되어야 합니다. TOD는 클라이언트의 연구, 기술,
제품을 3D 인터랙티브 그래픽을 중심으로 빠짐없이, 명확하게 시각화합니다. 보이지 않던 것을 눈앞에 펼치고, 복잡한 것을 직관적으로 풀어냅니다.</p>
</div>
<div class="about-card reveal-up" style="transition-delay: 0.45s;">
<h3>SWITCH ON.</h3>
<div class="gif-trigger" data-file="switch.html">
<img src="switch.gif" alt="Switch ON preview" width="300" height="300">
<div class="gif-overlay">
<p class="gif-overlay-kr">클릭하시면 3D interactive model을<br>경험하실 수 있습니다.</p>
</div>
</div>
<p class="desc-kr"><span class="kr-word">온유.</span> 스위치를 켜는 순간처럼, TOD는 본질을 선명하게 밝힙니다. 넘치는 에너지를
절제하고, 균형 잡힌 지점에서 표현합니다. 단순하고 정제되어 있지만 시선을 붙잡는 디자인으로 강하되 부드럽고, 주목을 이끌되 신뢰를 만드는 디자인을 지향합니다.
</p>
</div>
<div class="about-card reveal-up" style="transition-delay: 0.6s;">
<h3>WORLD ON.</h3>
<div class="gif-trigger" data-file="world.html">
<img src="world.gif" alt="World ON preview" width="300" height="300">
<div class="gif-overlay">
<p class="gif-overlay-kr">클릭하시면 3D interactive model을<br>경험하실 수 있습니다.</p>
</div>
</div>
<p class="desc-kr"><span class="kr-word">온누리.</span> 과학과 기술은 세상에 닿는 순간 비로소 그 의미를 얻습니다. TOD는
클라이언트의 성과가 더 많은 이들에게, 더 넓은 시장으로, 더 새로운 가능성 속으로 뻗어나갈 수 있도록 연결합니다. 우리의 디자인은 보여지는 것에서 멈추지 않고,
세상 속으로 다가갑니다.</p>
</div>
</div>
<div class="works-cta">
<a href="works.html" class="about-action-btn">
<span class="label">SHOW WORKS</span>
<span class="arrow" aria-hidden="true">→</span>
</a>
<a href="price-policy.html" class="about-action-btn" id="pricePolicyBtn">
<span class="label">PRICE POLICY</span>
<span class="arrow" aria-hidden="true">→</span>
</a>
</div>
</div>
</section>
<section id="contact">
<div class="contact-container">
<h2 class="reveal-up">Contact</h2>
<div class="contact-body reveal-up" style="transition-delay: 0.15s;">
<div class="contact-info-area">
<p class="contact-desc">프로젝트 의뢰는 이메일 및 AI 채팅봇, 카카오톡채널 문의를 통해 하실 수 있습니다. 아래의 메일 주소로 구체적인 프로젝트에 대한 전반적인 정보를 보내주세요. 검토 후 회신 드리겠습니다.<br><br>세금계산서 발급이 필요하시면 언제든 편하게 말씀해주세요. 바로 발급해드립니다.<br>카드로 결제하실 경우 결제 대행 수수료가 일부 추가되는 점 양해 부탁드립니다. 계좌 이체도 가능합니다.</p>
<div class="contact-actions">
<button type="button" id="email-modal-btn" class="email-direct-btn">
<span class="email-direct-btn__icon" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="5" width="18" height="14" rx="2" />
<path d="M3 7l9 6 9-6" />
</svg>
</span> 이메일 보내기
</button>
<!-- Kakao JS SDK: createChatButton이 이 div 안에 공식 1:1 채팅 버튼을 렌더링합니다. Kakao.init(JavaScript 키) 필요 — 하단 KAKAO_JS_KEY -->
<div id="kakao-chat-button" class="kakao-chat-button-wrap"></div>
</div>
<div class="contact-details">
<p><a href="mailto:info@tripleondesign.com">info@tripleondesign.com</a></p>
<p>34111</p>
<p>대전광역시 유성구 가정북로 96</p>
<p>B102, B-6</p>
</div>
</div>
<div class="chat-container">
<div class="chat-header">
<div class="chat-header-left">
<div class="chat-avatar">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M12 2L2 7l10 5 10-5-10-5z"></path>
<path d="M2 17l10 5 10-5"></path>
<path d="M2 12l10 5 10-5"></path>
</svg>
</div>
<div>
<div class="chat-title">TOD AI</div>
<div class="chat-status"><span class="status-dot"></span>Online</div>
</div>
</div>
</div>
<div class="chat-messages" id="chat-messages">
<div class="chat-msg bot">
<div class="msg-bubble">
안녕하세요! TOD AI입니다.<br>
무엇이든 궁금한 점이 있으시면 편하게 물어보세요.
</div>
</div>
</div>
<div class="chat-suggestions" id="chat-suggestions">
<button class="suggestion-btn" data-q="TOD는 어떤 서비스를 제공하나요?">서비스 소개</button>
<button class="suggestion-btn" data-q="프로젝트 의뢰는 어떻게 하나요?">프로젝트 의뢰</button>
<button class="suggestion-btn" data-q="포트폴리오를 볼 수 있나요?">포트폴리오</button>
<button class="suggestion-btn" data-q="연락처를 알려주세요.">연락처</button>
</div>
<div class="chat-input-area">
<input type="text" id="chat-input" placeholder="메시지를 입력하세요..." autocomplete="off">
<button id="chat-send-btn" aria-label="Send">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="22" y1="2" x2="11" y2="13"></line>
<polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>
</svg>
</button>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Email Modal -->
<div id="email-modal" class="email-modal">
<div class="email-modal-content">
<button class="email-modal-close" id="email-modal-close">×</button>
<div class="email-modal-header">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="2" y="4" width="20" height="16" rx="2"></rect>
<path d="M22 7l-10 7L2 7"></path>
</svg>
<span>Send Email</span>
</div>
<form id="email-form" class="email-modal-form">
<label>보내는 분 이름
<input type="text" name="sender_name" placeholder="홍길동" required>
</label>
<label>이메일 주소
<input type="email" name="sender_email" placeholder="example@email.com" required>
</label>
<label>제목
<input type="text" name="subject" placeholder="문의 제목" required>
</label>
<label>내용
<textarea name="body" rows="5" placeholder="문의 내용을 작성해 주세요." required></textarea>
</label>
<button type="submit" class="email-modal-submit">보내기</button>
</form>
</div>
</div>
<!-- CodePen Modal -->
<div id="codepen-modal" class="modal">
<div class="modal-content">
<button class="modal-close-btn" id="modal-close-btn" aria-label="Close">×</button>
<div id="modal-codepen-container"></div>
</div>
</div>
<footer>
<div class="footer-info">
<p>© 2026 Triple On Design. All rights reserved.</p>
</div>
</footer>
<!-- Work Items Modal Trigger -->
<script>
(function () {
const modal = document.getElementById('codepen-modal');
const modalContainer = document.getElementById('modal-codepen-container');
const modalCloseBtn = document.getElementById('modal-close-btn');
function closeModal() {
if (!modal) return;
modal.classList.remove('is-open');
modal.classList.remove('ratio-16-10');
if (modalContainer) modalContainer.innerHTML = '';
}
function openWorkModal(file) {
if (!modal || !modalContainer) return;
modalContainer.innerHTML = '<iframe src="' + file + '" style="width:100%;height:100%;border:none;" allowfullscreen title="Preview"></iframe>';
if (file.indexOf('works/diet/') !== -1) {
modal.classList.add('ratio-16-10');
}
modal.classList.add('is-open');
}
document.querySelectorAll('.work-modal-trigger').forEach(function (item) {
item.addEventListener('click', function (e) {
e.stopPropagation();
var file = item.dataset.file;
if (file) openWorkModal(file);
});
});
document.querySelectorAll('.gif-trigger').forEach(function (item) {
item.addEventListener('click', function (e) {
e.stopPropagation();
var file = item.dataset.file;
if (file) openWorkModal(file);
});
});
if (modalCloseBtn) {
modalCloseBtn.addEventListener('click', closeModal);
}
if (modal) {
modal.addEventListener('click', function (e) {
if (e.target === modal) closeModal();
});
}
document.addEventListener('keydown', function (e) {
if (e.key === 'Escape' && modal && modal.classList.contains('is-open')) {
closeModal();
}
});
})();
</script>
<!-- TOD AI Chat Logic -->
<script>
(function () {
const messagesEl = document.getElementById('chat-messages');
const inputEl = document.getElementById('chat-input');
const sendBtn = document.getElementById('chat-send-btn');
const suggestionsEl = document.getElementById('chat-suggestions');
const responses = {
'포트폴리오': '상단의 Works 섹션에서 3D Interactive Lab, Exodus, Mounjaro/Wegovy 기전 시각화 등 다양한 프로젝트를 확인하실 수 있습니다. 더 많은 작업물이 궁금하시면 이메일로 문의해 주세요.',
'연락처': '이메일: info@tripleondesign.com\n빠른 상담을 원하시면 프로젝트 개요와 함께 메일을 보내주세요. 영업일 기준 1~2일 내에 회신드리겠습니다.',
'가격': '프로젝트의 규모와 범위에 따라 달라집니다. 간단한 프로젝트 개요를 보내주시면 맞춤 견적을 안내해 드리겠습니다. (info@tripleondesign.com)',
'기간': '프로젝트 규모에 따라 다르지만, 일반적으로 2주~8주 정도 소요됩니다. 정확한 일정은 상담 시 안내해 드립니다.',
};
const serviceDetails = {
'3D 인터랙티브': 'Three.js 기반의 인터랙티브 3D 그래픽을 제작합니다. 분자 구조, 파티클 애니메이션, 제품 뷰어 등 다양한 3D 경험을 웹에서 구현해 드립니다.',
'과학·기술 시각화': '복잡한 과학적 메커니즘, 의약품 작용 기전, 연구 데이터를 직관적이고 아름다운 비주얼로 전환합니다. Mounjaro/Wegovy 기전 시각화가 대표적인 사례입니다.',
'브랜딩·BI': '연구기관, 바이오텍, 스타트업 등을 위한 브랜드 아이덴티티를 설계합니다. 로고, 컬러 시스템, 타이포그래피, 가이드라인까지 일관된 브랜드 경험을 만들어 드립니다.',
'웹 디자인·개발': '반응형 웹사이트, 랜딩 페이지, 인터랙티브 웹 앱을 디자인하고 개발합니다. 최신 기술 스택으로 빠르고 아름다운 웹 경험을 제공합니다.',
};
function addMessage(text, type) {
const msg = document.createElement('div');
msg.className = 'chat-msg ' + type;
const bubble = document.createElement('div');
bubble.className = 'msg-bubble';
bubble.textContent = text;
msg.appendChild(bubble);
messagesEl.appendChild(msg);
messagesEl.scrollTop = messagesEl.scrollHeight;
}
function addInlineButtons(buttons) {
const msg = document.createElement('div');
msg.className = 'chat-msg bot';
const wrap = document.createElement('div');
wrap.className = 'inline-btns';
buttons.forEach(function (b) {
const btn = document.createElement('button');
btn.className = 'suggestion-btn';
btn.textContent = b.label;
btn.addEventListener('click', function () {
wrap.remove();
b.action();
});
wrap.appendChild(btn);
});
msg.appendChild(wrap);
messagesEl.appendChild(msg);
messagesEl.scrollTop = messagesEl.scrollHeight;
}
function showTyping() {
const msg = document.createElement('div');
msg.className = 'chat-msg bot';
msg.id = 'typing-indicator';
msg.innerHTML = '<div class="msg-bubble"><span class="typing-dot"></span><span class="typing-dot"></span><span class="typing-dot"></span></div>';
messagesEl.appendChild(msg);
messagesEl.scrollTop = messagesEl.scrollHeight;
}
function removeTyping() {
const el = document.getElementById('typing-indicator');
if (el) el.remove();
}
function botReply(text, delay, callback) {
showTyping();
setTimeout(function () {
removeTyping();
addMessage(text, 'bot');
if (callback) callback();
}, delay || 800);
}
function addResetButton() {
addInlineButtons([{
label: '↩ 채팅 처음으로 다시 가기',
action: function () {
messagesEl.innerHTML = '<div class="chat-msg bot"><div class="msg-bubble">안녕하세요! TOD AI입니다.<br>무엇이든 궁금한 점이 있으시면 편하게 물어보세요.</div></div>';
suggestionsEl.style.display = '';
}
}]);
}
var serviceButtons = [
{ label: '3D 인터랙티브', action: function () { handleServiceSelect('3D 인터랙티브'); } },
{ label: '과학·기술 시각화', action: function () { handleServiceSelect('과학·기술 시각화'); } },
{ label: '브랜딩·BI', action: function () { handleServiceSelect('브랜딩·BI'); } },
{ label: '웹 디자인·개발', action: function () { handleServiceSelect('웹 디자인·개발'); } },
];
function handleServiceFlow() {
addMessage('TOD는 어떤 서비스를 제공하나요?', 'user');
suggestionsEl.style.display = 'none';
botReply('TOD는 3D 인터랙티브 비주얼, 브랜딩, 웹 디자인, 과학·기술 시각화 등을 전문으로 합니다. 복잡한 연구 성과나 기술을 직관적이고 아름다운 경험으로 전환해 드립니다.', 900, function () {
botReply('어떠한 디자인 서비스가 필요하신가요?', 1000, function () {
addInlineButtons(serviceButtons);
});
});
}
function handleServiceSelect(service) {
addMessage(service, 'user');
botReply(serviceDetails[service], 900, addResetButton);
}
function handleInquiryFlow() {
addMessage('프로젝트 의뢰는 어떻게 하나요?', 'user');
suggestionsEl.style.display = 'none';
botReply('프로젝트 의뢰는 이메일 또는 채팅으로 가능합니다.', 800, function () {
addInlineButtons([
{ label: '이메일로 의뢰', action: function () {
addMessage('이메일로 의뢰', 'user');
botReply('info@tripleondesign.com으로 프로젝트 개요, 예상 일정, 예산 범위를 함께 보내주시면 빠르게 상담해 드리겠습니다.', 800, addResetButton);
}},
{ label: '채팅으로 의뢰', action: function () {
addMessage('채팅으로 의뢰', 'user');
botReply('의뢰하실 프로젝트는 어떤 내용인가요?', 800, function () {
addInlineButtons([
{ label: '3D 인터랙티브', action: function () { showInquiryForm('3D 인터랙티브'); } },
{ label: '과학·기술 시각화', action: function () { showInquiryForm('과학·기술 시각화'); } },
{ label: '브랜딩·BI', action: function () { showInquiryForm('브랜딩·BI'); } },
{ label: '웹 디자인·개발', action: function () { showInquiryForm('웹 디자인·개발'); } },
]);
});
}},
]);
});
}
function showInquiryForm(service) {
addMessage(service, 'user');
botReply('아래 정보를 입력해 주시면 담당자가 확인 후 연락드리겠습니다.', 800, function () {
var msg = document.createElement('div');
msg.className = 'chat-msg bot';
msg.innerHTML =
'<form class="chat-form" id="inquiry-form">' +
' <input type="hidden" name="service" value="' + service + '">' +
' <label>담당자 이름<input type="text" name="name" placeholder="홍길동" required></label>' +
' <label>기관 및 기업<input type="text" name="company" placeholder="기관/기업명"></label>' +
' <label>이메일<input type="email" name="email" placeholder="example@email.com" required></label>' +
' <label>전화번호<input type="tel" name="phone" placeholder="010-0000-0000"></label>' +
' <label>URL<input type="url" name="url" placeholder="https://"></label>' +
' <label>프로젝트 설명<textarea name="description" rows="3" placeholder="프로젝트에 대해 자유롭게 설명해 주세요."></textarea></label>' +
' <label>예산<input type="text" name="budget" placeholder="예) 500만원~1000만원"></label>' +
' <label>제작 기간<input type="text" name="timeline" placeholder="예) 4주~6주"></label>' +
' <label class="chat-form-check"><input type="checkbox" id="privacy-check" required><span>개인정보보호정책에 동의합니다.</span></label>' +
' <button type="submit" class="chat-form-submit" disabled>의뢰 보내기</button>' +
'</form>';
messagesEl.appendChild(msg);
messagesEl.scrollTop = messagesEl.scrollHeight;
var form = document.getElementById('inquiry-form');
var checkbox = document.getElementById('privacy-check');
var submitBtn = form.querySelector('.chat-form-submit');
checkbox.addEventListener('change', function () {
submitBtn.disabled = !this.checked;
});
form.addEventListener('submit', function (e) {
e.preventDefault();
var fd = new FormData(form);
var submitBtn = form.querySelector('.chat-form-submit');
submitBtn.disabled = true;
submitBtn.textContent = '전송 중...';
var payload = {
access_key: 'b90dd32e-fa11-44ca-adab-69aa0b53884c',
subject: '[TOD 프로젝트 의뢰] ' + fd.get('name') + ' - ' + fd.get('service'),
from_name: fd.get('name') || '',
email: fd.get('email') || '',
message: '서비스 영역: ' + fd.get('service') +
'\n예산: ' + (fd.get('budget') || '-') +
'\n제작 기간: ' + (fd.get('timeline') || '-') +
'\n담당자: ' + fd.get('name') +
'\n기관/기업: ' + (fd.get('company') || '-') +
'\n이메일: ' + fd.get('email') +
'\n전화번호: ' + (fd.get('phone') || '-') +
'\nURL: ' + (fd.get('url') || '-') +
'\n\n프로젝트 설명:\n' + (fd.get('description') || '-')
};
fetch('https://api.web3forms.com/submit', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload)
}).then(function (res) { return res.json(); })
.then(function (data) {
if (data.success) {
form.style.display = 'none';
addMessage('문의가 전송되었습니다. 영업일 기준 1~2일 안에 연락드리겠습니다.', 'bot');
addResetButton();
} else {
submitBtn.disabled = false;
submitBtn.textContent = '의뢰 보내기';
addMessage('전송에 실패했습니다. 다시 시도해 주세요.', 'bot');
}
}).catch(function () {
submitBtn.disabled = false;
submitBtn.textContent = '의뢰 보내기';
addMessage('네트워크 오류가 발생했습니다. 다시 시도해 주세요.', 'bot');
});
});
});
}
function getResponse(question) {
const q = question.toLowerCase();
if (q.includes('서비스')) return '__SERVICE_FLOW__';
if (q.includes('의뢰')) return '__INQUIRY_FLOW__';
for (var key in responses) {
if (q.includes(key)) return responses[key];
}
return '감사합니다! 해당 문의는 이메일(info@tripleondesign.com)로 보내주시면 담당자가 상세히 안내해 드리겠습니다.';
}
function handleSend(text) {
if (!text.trim()) return;
inputEl.value = '';
suggestionsEl.style.display = 'none';
var resp = getResponse(text);
if (resp === '__SERVICE_FLOW__') {
handleServiceFlow();
return;
}
if (resp === '__INQUIRY_FLOW__') {
handleInquiryFlow();
return;
}
addMessage(text, 'user');
botReply(resp, 800 + Math.random() * 600, addResetButton);
}
sendBtn.addEventListener('click', function () {
handleSend(inputEl.value);
});
inputEl.addEventListener('keydown', function (e) {
if (e.key === 'Enter') handleSend(inputEl.value);
});
document.querySelectorAll('.suggestion-btn').forEach(function (btn) {
btn.addEventListener('click', function () {
handleSend(btn.dataset.q);
});
});
})();