-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
831 lines (736 loc) · 30.6 KB
/
index.html
File metadata and controls
831 lines (736 loc) · 30.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
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
<!DOCTYPE html>
<html lang="ko">
<head>
<title>es.c.ape1001</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<style>
*{margin:0;padding:0;}
body{margin:0;padding:0; font-family:'score400';}
li{list-style:none;}
a:link,a:visited{text-decoration:none; color:#000; font-family:'score400';}
h2{width:1px; height:1px; font-size:1px; line-height:0px; overflow:hidden; position:absolute; left:-9999px;}
@font-face {
font-family:'score400';
src: url('font/scdream4.woff');
}
#wrap{width:100%;}
/*####### header #######*/
#header{width:100%; height:80px; position:fixed; top:0; z-index:1; transition:background-color 0.5s;}
h1{width:60px; height:45px; position:absolute; left:30px; bottom:10px; cursor:pointer;}
h1 img{width:100%;}
#pcNav{width:80%; position:absolute; right:20px; bottom:10px; text-align:right;}
#pcNav li{display:inline-block; padding:0 20px; font-size:24px;}
#pcNav li a{transition:color 0.2s;}
#pcNav li a:hover,#header li a:focus{color:#fc0; outline:none;}
#pcNav .selected a{color:#fc0;}
#mobNav{display:none;}
/*####### container #######*/
#container{width:100%;}
/*####### greet #######*/
#greet_area{width:100%; height:960px; background:url('img/back.jpg') no-repeat #fff; background-size:cover; background-attachment:fixed; position:relative; overflow:hidden;}
#greet{width:100%; height:100%;
backdrop-filter:blur(10px) brightness(110%);
/*-webkit-backdrop-filter:blur(10px) brightness(110%);*/ background-color:rgba(255,255,255,0.5);
text-align:center;
position:relative;
}
#greet .textBox{position:absolute; left:50%; top:50%; transform:translate(-50%,-60%); word-break:keep-all; line-height:80px; opacity:0; transition:opacity 1.5s;}
#greet .textBox .text{display:inline-block;
width:400px; height:50px; line-height:50px; font-size:30px; border:5px solid #314098; background-color:rgba(255,255,255,0.6);
/*border-image:linear-gradient(40deg, #c41cb7, #5673bc, #1217b1);
border-image-slice:1;*/
overflow:hidden;
}
#greet .textBox b{font-size:40px; letter-spacing:2px;}
#greet .textBox i{font-style:normal; display:none;}
#greet .textBox span{font-size:80px;
animation:textGra 4s infinite alternate;
background:linear-gradient(40deg, #c41cb7, #5673bc, #1217b1);
background-size:400% 400%;
-webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
@keyframes textGra{
0%{background-position:0 0;}
50%{background-position:50% 100%;}
100%{background-position:100% 50%;}
}
#greet .btn{display:inline-block; position:absolute; left:50%; top:90%; transform:translatex(-50%);}
#greet .btn a{display:block; padding:10px 20px; color:#fff; text-shadow:0 0 15px rgba(0,0,0,0.7);}
#greet .btn span{display:inline-block; transform:rotate(180deg); animation:arrow 1s infinite alternate;}
@keyframes arrow{
0%{transform:rotate(180deg) translatey(0);}
100%{transform:rotate(180deg) translatey(5px);}
}
#particle_wrap div{position:absolute; left:0; top:0; mix-blend-mode:hard-light;}
#particle_wrap .particle{animation:particleani 1s infinite alternate;}
#particle_wrap div:nth-child(odd) .particle{animation-duration:1.3s;}
@keyframes particleani{
0%{transform:scale(1);}
50%{transform:scale(0.5);}
100%{transform:scale(1);}
}
/*####### about #######*/
#about_area{width:100%; padding:100px 0; background-color:#f5f6f9;}
#about{width:1025px; margin:0 auto;}
#about .textBox{width:40%; padding-top:80px; padding-right:20%; font-size:14px; float:left; word-break:keep-all; opacity:0; transition:all 1s ease-out 0.2s;}
#about .textBox b{display:block; padding-bottom:20px; font-size:24px;}
#about .imgBox{width:40%; height:400px; float:left; overflow:hidden; transform:translatex(100px); opacity:0; transition:all 1s ease-out 0.2s;}
#about .imgBox .film{width:400%; height:100%; animation:sw 25s infinite ease-in-out;}
@keyframes sw{
0%{margin-left:0;}
30%{margin-left:0;}
33%{margin-left:-100%;}
63%{margin-left:-100%;}
66%{margin-left:-200%;}
96%{margin-left:-200%;}
100%{margin-left:-300%;}
}
#about .imgBox .film img{width:25%; vertical-align:top;}
#about .imgBox .film img:nth-child(1){transform:translatey(-20%);}
#about .imgBox .film img:nth-child(2){transform:translatey(-22%);}
#about .imgBox .film img:nth-child(3){transform:translatey(-25%);}
#about .imgBox .film img:nth-child(4){transform:translatey(-20%);}
#about:after{content:""; display:block; clear:both;}
/*####### about_more #######*/
#about_more_area{width:100%; padding:100px 0; font-size:14px;}
#career,#study,#skill{width:1025px; margin:0 auto;}
#about_more_area h3{width:15%; height:100%; margin-right:5%; padding:10px 0; float:left; color:#324099; border-top:1px solid #324099; letter-spacing:3px; text-indent:5px; font-size:18px;}
#about_more_area .desc{width:80%; padding:10px 0; float:left; border-top:1px solid #777;}
#career dl{width:100%;}
#career dt{width:100%; padding-bottom:10px; cursor:pointer; transition:color 0.4s;}
#career dt.c2{padding-top:10px;}
#career dt span{display:inline-block; transform:rotate(-90deg); transition:transform 0.2s;}
#career dt b{padding-right:20px;}
#career dd{padding-left:20px; padding-bottom:5px; word-break:keep-all; display:none;}
#career dd b{padding-right:10px;}
#career dd i{font-style:normal; padding-left:15px; color:#999;}
#study{padding-top:50px;}
#study p{width:100%; padding-bottom:10px;}
#study p b{display:inline-block; width:200px;}
#study p span{display:inline-block; width:540px;}
#skill{padding-top:50px;}
#skill h3{border:none;}
#skill .desc{border:none;}
#skill .desc dl{width:100%; padding:10px 0; border-bottom:1px solid #838ed5;}
#skill .desc dl:first-child{padding:0; padding-bottom:10px;}
#skill .desc dt{display:inline-block; margin-right:50px; background-color:#838ed5; color:#f5f6f9; padding:5px 10px; border-radius:20px;}
#skill .desc dd{display:inline-block; margin-right:30px;}
#skill .web a[title=html]{animation:blink 0.7s infinite alternate;}
@keyframes blink{
0%{color:#000;}
100%{color:#f50;}
}
#skill .desc dd a:hover,#skill .desc dd a:focus{color:#fa0; outline:none;}
#skill .desc .last{width:90%; padding:10px 0; padding-left:15%; display:none; color:#324099; font-size:12px; word-break:keep-all;}
#career:after{content:""; display:block; clear:both;}
#study:after{content:""; display:block; clear:both;}
#skill:after{content:""; display:block; clear:both;}
#about_more_area:after{content:""; display:block; clear:both;}
#tooltip{display:none; position:absolute; left:0; top:0; z-index:10;}
#tooltip p:first-child{display:inline-block; color:#fff; padding:10px 15px; background-color:#5b66ad; border-radius:5px; font-size:13px; line-height:20px;}
#tooltip p:last-child{width:10px; height:10px; background-color:#5b66ad; transform:rotate(45deg); position:absolute; left:15px; bottom:-5px;}
/*####### port #######*/
#port{width:100%; padding:150px 0; overflow:hidden;}
#port h3{font-size:40px; text-indent:5%; padding-bottom:80px; text-transform:uppercase; opacity:0; transition:opacity 0.5s;}
#cheese{width:100%; height:500px;}
#cheese .imgBox{width:50%; height:100%; overflow:hidden; float:left; opacity:0; transition:opacity 0.5s; position:relative;}
#cheese .imgBox p{position:absolute; animation:float 3s infinite alternate;}
@keyframes float{
0%{transform:translateX(0%);}
100%{transform:translateX(5%);}
}
#cheese .imgBox p:nth-child(1){left:45%; top:15%;}
#cheese .imgBox p:nth-child(2){left:20%; top:5%;}
#cheese .imgBox p:nth-child(3){left:50%; top:50%;}
#cheese .imgBox p:nth-child(4){left:18%; top:60%;}
#cheese .textBox{width:45%; padding-left:5%; height:100%; float:left; text-align:left; word-break:keep-all;}
#cheese .textBox h4{font-size:24px; padding-bottom:20px; transform:translatex(10%); opacity:0; transition:all 0.5s;}
#cheese .textBox p{transform:translatex(10%); opacity:0; transition:all 0.5s ease-out 0.1s;}
#cheese .textBox .subText{color:#777; padding:20% 0 20px; transition-delay:0.2s;}
#cheese .textBox .btn{padding-top:20px; transition-delay:0.3s;}
#cheese .textBox .btn a{display:inline-block; width:150px; height:40px; line-height:40px; margin:0 20px; text-align:center; border-radius:20px; background-color:#838ed5; color:#fff; transition:background-color 0.4s;}
#cheese .textBox .btn a[title=link]{animation:blinkBtn 1s infinite alternate;}
@keyframes blinkBtn{
0%{background-color:#838ed5;}
100%{background-color:#fa0;}
}
#cheese .textBox .btn a:hover,#cheese .textBox .btn a:focus{background-color:#324099; outline:none; animation:none;}
/*####### footer #######*/
#footer{width:100%; overflow:hidden;}
#contact_area{width:100%; background-color:#324099;}
#contact{width:1025px; padding:70px 0; margin:0 auto;}
#contact p{width:50%; float:left; color:rgba(255,255,255,0.5); font-size:24px; transform:translatex(-10%); opacity:0; transition:all 0.8s;}
#contact p em{font-style:normal; color:#fff; padding:0 10px; font-size:26px;}
#contact .btn{transform:translatex(10%); text-align:center; line-height:103px;}
#contact .btn a{display:inline-block; width:200px; height:50px; line-height:50px; text-align:center; border-radius:3px; font-size:20px; background-color:#fff; color:#324099; transition:all 0.4s;}
#contact .btn a:hover,#contact .btn a:focus{background-color:rgba(255,255,255,0.3); color:#fff; outline:none;}
#contact:after{content:""; display:block; clear:both;}
#footer_info_area{width:100%; background-color:#efefef;}
#footer_info{width:1025px; margin:0 auto; padding:60px 0 40px; text-align:center;}
#footer_info img{width:70px;}
#footer_info p{width:100%; padding-top:20px;}
/*미디어쿼리*/
@media all and (min-width:320px) and (max-width:480px){
/*header*/
#header{height:50px;}
h1{width:40px; height:40px; left:20px; bottom:5px;}
#pcNav{display:none;}
#mobNav{display:block;}
#mobNav .btn{width:24px; height:20px; position:absolute; right:20px; top:15px; z-index:1;}
#mobNav .btn span{display:inline-block; width:100%; height:2px; background-color:#324099; position:absolute; left:0; top:0; transition:all 0.5s;}
#mobNav .btn span:nth-child(2){top:50%; transform:translatey(-1px);}
#mobNav .btn span:nth-child(3){top:auto; bottom:0;}
#mobNav ul{position:fixed; width:40%; height:90%; padding-top:20%; right:0; top:0; background-color:rgba(255,255,255,0.9);
backdrop-filter:blur(5px);
/*-webkit-backdrop-filter:blur(5px);*/
text-align:right; line-height:50px; transform:translatex(100%); transition:all 0.4s;}
#mobNav li{padding-right:20px;}
#mobNav .selected a{color:#fc0;}
/*greet*/
#greet_area{height:600px;}
#greet .textBox{font-size:24px; line-height:60px;}
#greet .textBox span{font-size:45px;}
#greet .textBox .text{width:300px; font-size:22px;}
/*about*/
#about{width:90%; padding-bottom:240px; position:relative; overflow:hidden;}
#about .textBox{width:100%; padding-top:0; float:none;}
#about .imgBox{width:200px; height:200px; margin-top:20px; float:none; position:absolute; bottom:0; right:0;}
/*about_more*/
#career,#study,#skill{width:90%;}
#about_more_area h3{width:100%; height:auto; margin-right:0; padding:10px 0; float:none; text-indent:0; font-size:18px; border:none;}
#about_more_area .desc{width:100%; padding:10px 0; float:none; border-top:1px solid #777;}
#career dd{padding-bottom:10px;}
#career dd i{display:block; padding-left:0;}
#study{padding-top:50px;}
#study p{width:100%; padding-bottom:24px; color:#838ed5; word-break:keep-all;}
#study p b{display:block; width:100%; color:#000; font-size:16px;}
#study p span{display:block; width:100%; padding:5px 0; color:#000;}
#skill .desc dt{display:block; width:100px; margin-right:0; margin-bottom:10px; padding:5px 0; text-align:center;}
#skill .desc dd{margin:0 10px 10px 10px;}
#skill .desc .last{width:100%; margin:0; padding:10px 0; line-height:20px;}
/*port*/
#port h3{font-size:30px; padding-bottom:50px;}
#cheese{height:auto;}
#cheese .imgBox{width:100%; height:300px; float:none;}
#cheese .imgBox p img{transform:scale(0.5) translate(-50%,-50%);}
#cheese .imgBox p:nth-child(1){left:45%; top:15%;}
#cheese .imgBox p:nth-child(2){left:20%; top:5%;}
#cheese .imgBox p:nth-child(3){left:50%; top:50%;}
#cheese .imgBox p:nth-child(4){left:18%; top:60%;}
#cheese .textBox{width:90%; margin:0 auto; height:auto; float:none; padding:20px 0 0; text-align:center;}
#cheese .textBox .btn a{display:inline-block; width:150px; height:40px; line-height:40px; margin:0; margin-bottom:15px;}
/*footer*/
#contact{width:100%; margin:0; padding:30px 0;}
#contact p{width:270px; margin:0 auto; float:none; font-size:14px;}
#contact p em{font-style:normal; color:#fff; padding:0; font-size:16px;}
#contact .btn{line-height:40px; padding-top:20px;}
#contact .btn a{width:150px; height:40px; line-height:40px; font-size:18px;}
#footer_info{width:90%;}
#footer_info p{font-size:14px; padding-top:10px;}
}
</style>
<script>
$(document).ready(function(){
/* 로딩시 greeting 텍스트박스*/
$("#greet .textBox").css({"opacity":"1"});
/*h1클릭시 맨 위*/
$("h1").click(function(){
$("html, body").stop().animate({"scrollTop":"0"},1000,'swing');
});
/*greeting 높이*/
$("#greet_area").css({"height":$(window).height()});
/*greeting 멘트변화*/
var greetOnf = 0;
function greetT(){
$("#greet .text i").slideDown(500).delay(4000).slideUp(500,function(){
if(greetOnf==0){
$("#greet .text").html("<i>영상 디자이너에서 개발자로</i>");
greetOnf = 1;
}
else if(greetOnf==1){
$("#greet .text").html("<i>배움 있는 일터를 찾고 있는</i>");
greetOnf = 2;
}
else if(greetOnf==2){
$("#greet .text").html("<i>여행과 피자를 좋아하는</i>");
greetOnf = 3;
}
else if(greetOnf==3){
$("#greet .text").html("<i>과정을 즐기는 개발자</i>");
greetOnf = 0;
}
});
}
greetT();
setInterval(greetT,500);
/*greeting 파티클 마우스 커서 반응*/
var sizes = [10,20,24,36,44];
var colors = ['#f44336', '#e91e63', '#9c27b0', '#673ab7', '#3f51b5', '#2196f3', '#03a9f4', '#00bcd4', '#009688', '#4CAF50', '#8BC34A', '#CDDC39', '#FFEB3B', '#FFC107', '#FF9800',
'#FF5722', '#795548', '#9E9E9E', '#607D8B', '#777777'
];
function createParticle(){
for(var i=0; i<20; i++){
var randomN = Math.round(Math.random()*10)*i;
var randomB = Math.round(Math.random()*10)*i;
console.log("ran : "+randomN);
$("#particle_wrap").append("<div class='p"+i+"'><p class='particle'></p></div>");
$("#greet_area .p"+i).css({"left":randomN+"%","top":randomB+"%"});
$("#greet_area .p"+i+" p").css({"width":sizes[randomN%5],"height":sizes[randomN%5],"borderRadius":sizes[randomN%5]/2,"backgroundColor":colors[randomN%20],"opacity":"0."+randomB*0.5});
}
/*$("#greet_area .particle").animate({"marginTop":"-100%"},9000,function(){
$(this).remove();
});*/
}
createParticle();
//setInterval(createParticle,7000);
$("#greet_area").mousemove(function(a){
var cursorX =a.pageX;
var cursorY =a.pageY;
console.log("cursorX : "+cursorX+" / cursorY : "+cursorY);
$("#particle_wrap div").css({"transform":"translate("+cursorX+"%, "+cursorY+"%)"});
});
/*greeting 버튼*/
$("#greet a").on("click focus", function(){
$("html, body").stop().animate({"scrollTop":$(window).height()},1000,'swing');
});
/*스크롤시 네비 컬러, 구역별 리액션*/
var scrollT = window.scrollY;
var aboutT = $("#about_area").offset().top-100;
var portT = $("#port").offset().top;
var contactT = $(document).height()-$(window).height();
function navAction(){
if(scrollT<=portT){
$("#header").css({"background":"none"});
$("#pcNav li,#mobNav ul li").removeClass();
$("#pcNav li:eq(0),#mobNav ul li:eq(0)").addClass("selected");
}
else if(scrollT>portT && scrollT<=aboutT){
$("#header").css({"backgroundColor":"#fff"});
$("#pcNav li,#mobNav ul li").removeClass();
$("#pcNav li:eq(1),#mobNav ul li:eq(1)").addClass("selected");
}
else if(scrollT>aboutT && scrollT<contactT){
$("#header").css({"backgroundColor":"#fff"});
$("#pcNav li,#mobNav ul li").removeClass();
$("#pcNav li:eq(2),#mobNav ul li:eq(2)").addClass("selected");
}
else if(scrollT>=contactT){
$("#header").css({"backgroundColor":"#fff"});
$("#pcNav li,#mobNav ul li").removeClass();
$("#pcNav li:eq(3),#mobNav ul li:eq(3)").addClass("selected");
}
}
function scrollAction(){
if(scrollT>portT-$("#port").height()/2){
$("#port h3, #cheese .imgBox").css({"opacity":"1"});
$("#cheese .textBox h4, #cheese .textBox p").css({"transform":"translatex(0)","opacity":"1"});
}
else{
$("#port h3, #cheese .imgBox").css({"opacity":"0"});
$("#cheese .textBox h4, #cheese .textBox p").css({"transform":"translatex(100%)","opacity":"0"});
}
if(scrollT>aboutT-$("#about").height()*0.7){
$("#about_area h3, #about .textBox").css({"opacity":"1"});
$("#about .imgBox").css({"transform":"translatex(0)","opacity":"1"});
}
else{
$("#about_area h3, #about .textBox").css({"opacity":"0"});
$("#about .imgBox").css({"transform":"translatex(100%)","opacity":"0"});
}
if(scrollT>aboutT){
if($("#career dt.c2").next().attr("class").indexOf("s")==-1){
$("#career dt.c2").click();
}
}
if(scrollT>=contactT-$("#footer").height()/2){
$("#contact p").css({"transform":"translatex(0)","opacity":"1"});
}
else{
$("#contact p").css({"transform":"translatex(100%)","opacity":"0"});
}
}
$(window).scroll(function(){
scrollT=window.scrollY;
//console.log("scroll : "+scrollT);
//console.log(aboutT);
navAction();
scrollAction();
});
/*모바일네비*/
var navOnf = true;
$("#mobNav .btn").click(function(){
if(navOnf==true){
$(this).children("span:eq(0)").css({"top":"50%","transform":"rotate(45deg)"});
$(this).children("span:eq(1)").css({"opacity":"0"});
$(this).children("span:eq(2)").css({"bottom":"50%","transform":"translatey(2px) rotate(-45deg)"});
$("#mobNav ul").css({"transform":"translatex(0)","boxShadow":"0 0 10px rgba(0,0,0,0.5)"});
navOnf=false;
}
else{
$(this).children("span:eq(0)").css({"top":"0","transform":"rotate(0deg)"});
$(this).children("span:eq(1)").css({"opacity":"1"});
$(this).children("span:eq(2)").css({"bottom":"0","transform":"translatey(0) rotate(0deg)"});
$("#mobNav ul").css({"transform":"translatex(100%)","boxShadow":"0 0 10px rgba(0,0,0,0)"});
navOnf=true;
}
});
$("#mobNav").mouseleave(function(){
navOnf=false;
$("#mobNav .btn").click();
});
$("#mobNav li a").click(function(){
$("#mobNav .btn").click();
$("#mobNav li").removeClass();
$(this).parent().addClass("selected");
});
/*경력사항 클릭 아코디언*/
$("#career dt").mouseover(function(){
if($(this).next().attr("class").indexOf("s")==-1){
$(this).css({"color":"#324099"});
}
}).mouseout(function(){
if($(this).next().attr("class").indexOf("s")==-1){
$(this).css({"color":"#000"});
}
});
$("#career dt").click(function(){
$(this).css({"color":"#324099"});
$("#career dd."+$(this).attr('class')).stop().fadeToggle();
console.log($(this).attr("class").indexOf('s'));
var careerOnf = $(this).next().attr("class").indexOf('s');
if(careerOnf==-1){
$(this).find("span").css({"transform":"rotate(0deg)"});
$(this).next().addClass("selected");
}
else{
$(this).find("span").css({"transform":"rotate(-90deg)"});
$(this).next().removeClass("selected");
}
});
/*스킬 클릭 설명글 - 아코디언 ver*/
function skillA(){
$("#skill .desc dd a").click(function(){
var here = $(this).parent().parent().index();
var detail = $(this).attr("href").substring(1);
//console.log(here);
$("#skill .desc dd a").css({"animation":"none"});
$.ajax({
url:"data/skill.xml",
data:"get",
dataType:"xml",
success:function(data){
var list = $(data).find(detail).html();
//console.log(list);
$("#skill dl:eq("+here+") .last").html(list);
},error:function(){
alert("error!");
}
});
$(this).parent().parent().find(".last").stop().slideDown();
});
}
/*스킬 클릭 설명글 - tooltip ver*/
function skillT(){
$("#skill .desc dd a").bind('mouseover focus',function(){
var here = $(this).parent().parent().index();
var detail = $(this).attr("href").substring(1);
console.log(here);
$.ajax({
url:"data/skill.xml",
data:"get",
dataType:"xml",
success:function(data){
var list = $(data).find(detail).html();
//console.log(list);
$("#tooltip p:first-child").html(list);
},error:function(){
alert("error!");
}
});
$("#skill .desc dd a").css({"animation":"none"});
if(here==2){
$("#tooltip p:last-child").css({"bottom":"auto","top":"-5px"});
$("#tooltip").css({"left":$(this).offset().left,"top":$(this).offset().top+$("#tooltip").height()}).stop().fadeIn();
}
else{
$("#tooltip p:last-child").css({"top":"auto","bottom":"-5px"});
$("#tooltip").css({"left":$(this).offset().left,"top":$(this).offset().top-$("#tooltip").height()}).stop().fadeIn();
}
});
$("#skill .desc dd a").bind('mouseout blur', function(){
$("#tooltip").stop().fadeOut();
$("#skill .web a[title=html]").css({"animation":"blink 0.7s infinite alternate"});
})
}
/* 스킬 설명글 - 너비따라 */
var winW = $(window).width();
//console.log("winW"+winW);
if(winW>1025){
skillT();
}
else{
skillA();
}
}); // jQuery
/*클립보드 복사*/
function copymail(mail){
var dummy = document.createElement("textarea");
document.body.appendChild(dummy);
dummy.value = mail;
dummy.select();
document.execCommand("copy");
document.body.removeChild(dummy);
alert('메일주소가 클립보드에 복사되었습니다.');
}
</script>
</head>
<body>
<div id="wrap">
<header id="header">
<h1>
<img src="img/logo.png" alt="es.c"/>
</h1>
<ul id="pcNav">
<li class="selected">
<a href="#" title="HOME">HOME</a>
</li>
<li>
<a href="#port" title="PORTFOLIO">PORTFOLIO</a>
</li>
<li>
<a href="#about_area" title="ABOUT">ABOUT</a>
</li>
<li>
<a href="#contact" title="CONTACT">CONTACT</a>
</li>
</ul>
<nav id="mobNav">
<p class="btn">
<span></span>
<span></span>
<span></span>
</p>
<ul>
<li class="selected">
<a href="#" title="HOME">HOME</a>
</li>
<li>
<a href="#port" title="PORTFOLIO">PORTFOLIO</a>
</li>
<li>
<a href="#about_area" title="ABOUT">ABOUT</a>
</li>
<li>
<a href="#contact" title="CONTACT">CONTACT</a>
</li>
</ul>
</nav>
</header>
<div id="container">
<div id="greet_area">
<h2>메인페이지 - 인사</h2>
<div id="greet">
<p class="textBox">
<strong>
<b>안녕하세요!</b><br/>
<i class="text"><i>과정을 즐기는 개발자</i></i><br/>
<span>ES.C 입니다.</span>
</strong>
</p>
<p class="btn">
<a href="#none" title="ABOUT"><span>^</span> Scroll more</a>
</p>
</div>
<div id="particle_wrap"></div>
</div>
<section id="port">
<h3>Portfolio</h3>
<div id="cheese">
<div class="imgBox">
<p>
<img src="img/m0_pad.png" alt="이미지0"/>
</p>
<p>
<img src="img/m1_pc.png" alt="이미지1"/>
</p>
<p>
<img src="img/m2_pad.png" alt="이미지2"/>
</p>
<p>
<img src="img/m3_mob.png" alt="이미지3"/>
</p>
</div>
<div class="textBox">
<h4>치즈퀸 리뉴얼 프로젝트</h4>
<p>
국내 치즈 쇼핑몰인 치즈퀸의 웹사이트를 리뉴얼해보았어요.<br/>
테이블 코딩으로 구성된 기존의 홈페이지를 시멘틱 태그를 이용해 웹표준에 맞게 마크업했습니다.<br/>
페이지 디자인부터 마크업, 스크립트, PHP작업까지 100% 1인 제작 날코딩으로 작업했어요.
</p>
<p class="subText">
<b>사용 스킬</b><br/>
HTML5 / CSS3 / javascript / jQuery / PHP / mySQL
</p>
<p class="btn">
<a href="http://escape1001.dothome.co.kr/cheesequeen/index.php" title="link" target="_blank">사이트 더 보기</a>
<a href="data/cheese_desc.pdf" title="기술상세서" target="_blank">기술상세서</a>
</p>
</div>
</div>
</section>
<section id="about_area">
<h2>about me</h2>
<div id="about">
<p class="textBox">
<b>To Infinity and Beyond!</b>
영상디자인을 전공하고 대학로에서 9년간 프리랜서 영상 디자이너로 일했어요. 주로 중-소극장 공연의 SNS를 관리하고 영상 컨텐츠를 기획, 제작하며 객석과 무대 사이의 즐거움을 더했습니다.<br/><br/>
영상 작업을 거듭할수록 재생과 멈춤 외에도 여러가지 선택지가 있는 작업을 하고 싶었고 팬데믹으로 세상이 멈춘 2019년, 엎어진 김에 동전을 줍겠다는 각오로 웹개발로의 전향을 결심했습니다.<br/><br/>
6개월간 결석 제로! 지각 제로! 100%의 꽉 찬 수강률로 성실성을 증명하며 학습을 이어나간 결과, 종강일에는 우수 학생으로 선정되었어요.<br/><br/>
최후의 순간에도 언제나 길은 있다고 생각해요.
</p>
<div class="imgBox">
<div class="film">
<img src="img/m0.jpg" alt="es.c_pic0"/><img src="img/m1.jpg" alt="es.c_pic1"/><img src="img/m2.jpg" alt="es.c_pic2"/><img src="img/m0.jpg" alt="es.c_pic0"/>
</div>
</div>
</div>
</section>
<section id="about_more_area">
<h2>상세정보</h2>
<div id="career">
<h3>경력사항</h3>
<div class="desc">
<dl>
<dt class="c1"><span>▼</span> <b>2018 ~ 2019</b> AFC / 박호준헤어 미디어실장</dt>
<dd class="c1">
<b>AFC</b>06~12회 대회 VCR, 인쇄물 제작
</dd>
<dd class="c1">
<b>AFC</b>06~12회 대회 기사 송출 및 대회 운영
</dd>
<dd class="c1">
<b>박호준헤어</b> 가맹점 홍보물 인쇄 제작
</dd>
<dt class="c2"><span>▼</span> <b>2011 ~ 2019</b> 프리랜서 영상디자이너</dt>
<dd class="c2">
<b>2011~2015</b>뮤지컬 토크쇼 <이야기쇼> 시즌2<i>온라인 영상 제작</i>
</dd>
<dd class="c2">
<b>2015</b>뮤지컬 웹예능 <배우수업><i>종편</i>
</dd>
<dd class="c2">
<b>2016</b>뮤지컬 <신과 함께 가라> <i>온라인 홍보 (SNS채널 운영 및 영상 콘텐츠 제작)</i>
</dd>
<dd class="c2">
<b>2016</b>뮤지컬 <알타보이즈><i>온라인 홍보 (SNS채널 운영 및 영상 콘텐츠 제작)</i>
</dd>
<dd class="c2">
<b>2016</b>자라섬 뮤지컬 페스티벌 <이야기쇼 with 자라섬><i>공연 VCR 제작</i>
</dd>
<dd class="c2">
<b>2017</b>연극 <남자충동>, <미친키스><i>온라인 홍보 (SNS채널 운영 및 영상 콘텐츠 제작)</i>
</dd>
<dd class="c2">
<b>2017</b>뮤지컬 갈라콘서트 <Reply><i>공연 VCR 제작</i>
</dd>
<dd class="c2">
<b>2017</b>더뮤지컬 페스티벌 <뮤지컬 육상선수권 대회><i>공연 VCR 제작</i>
</dd>
<dd class="c2">
<b>2017</b>뮤지컬 <틱틱붐><i>온라인 홍보 (SNS채널 운영 및 영상 콘텐츠 제작)</i>
</dd>
<dd class="c2">
<b>2017</b>뮤지컬 <줄리 앤 폴><i>온라인 홍보 (SNS채널 운영 및 영상 콘텐츠 제작)</i>
</dd>
<dd class="c2">
<b>2018</b>뮤지컬 콘서트 <택스티발><i>공연 VCR 제작</i>
</dd>
<dd class="c2">
<b>2019</b>연극 <머더 미스터리><i>웹 콘텐츠 제작 (영상, 카드뉴스)</i>
</dd>
<dd class="c2">
<b>2019</b>연극 <생쥐와 인간><i>웹 콘텐츠 제작 (영상, 카드뉴스)</i>
</dd>
</dl>
</div>
</div>
<div id="study">
<h3>교육사항</h3>
<div class="desc">
<p>
<b>2020. 10 ~ 2021. 04</b><span>그린컴퓨터 아카데미 UI/UX디자인 웹퍼블리셔&프론트엔드 개발자 양성과정 (980H)</span>수료
</p>
<p>
<b>2011. 03 ~ 2016. 02</b><span>계원예술대학교 영상디자인과</span>졸업
</p>
<p>
<b>2008. 03 ~ 2010. 02</b><span>서울영상고등학교 애니메이션과</span>중퇴
</p>
</div>
</div>
<div id="skill">
<h3>직무능력사항</h3>
<div class="desc">
<dl class="web">
<dt>WEB</dt>
<dd><a href="#html" title="html">HTML</a></dd>
<dd><a href="#css" title="css">CSS</a></dd>
<dd><a href="#javascript" title="javascript">javascript</a></dd>
<dd><a href="#jQuery" title="jQuery">jQuery</a></dd>
<dd><a href="#react" title="react">React</a></dd>
<dd><a href="#php" title="php">PHP</a></dd>
<dd><a href="#MySQL" title="MySQL">MySQL</a></dd>
<dd class="last">* 상세설명 어쩌구</dd>
</dl>
<dl class="adobe">
<dt>Adobe Tools</dt>
<dd><a href="#ps" title="photoshop">Photoshop</a></dd>
<dd><a href="#ai" title="illustrator">Illustrator</a></dd>
<dd><a href="#pr" title="premiere_pro">Premiere Pro</a></dd>
<dd><a href="#ae" title="after_effect">After Effect</a></dd>
<dd><a href="#xd" title="xd">XD</a></dd>
<dd class="last">* 상세설명 어쩌구</dd>
</dl>
<dl class="ms">
<dt>MS Office</dt>
<dd><a href="#word" title="word">Word</a></dd>
<dd><a href="#excel" title="excel">Excel</a></dd>
<dd><a href="#powerpoint" title="powerpoint">Power Point</a></dd>
<dd class="last">* 상세설명 어쩌구</dd>
</dl>
</div>
<div id="tooltip">
<p>test</p>
<p></p>
</div>
</div>
</section>
</div>
<footer id="footer">
<section id="contact_area">
<h2>contact</h2>
<div id="contact">
<p>
if(you.want==moreInfo){<br/>
email(<em>es.c.ape1001@hanmail.net</em>);<br/>
}
</p>
<p class="btn">
<a href="#none" title="클립보드에 주소 복사" onclick="copymail('es.c.ape1001@hanmail.net');">copy</a>
</p>
</div>
</section>
<div id="footer_info_area">
<div id="footer_info">
<img src="img/logo.png" alt="es.c"/>
<p>
Copyright © 2021 by ES.C.APE1001 All Right reserved
</p>
</div>
</div>
</footer>
</div>
</body>
</html>