-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1147 lines (1141 loc) · 52.5 KB
/
index.html
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="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://d3js.org/d3.v7.min.js" defer></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/addons/p5.sound.min.js"></script>
<script src="js/lyrics/LoveDive.js"></script>
<script src="js/lyrics/TroubleMaker.js"></script>
<script src="js/lyrics/Empty.js"></script>
<script src="js/lyrics/ChainedUp.js"></script>
<script src="js/prompt.js"></script>
<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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Syne:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/page1.css" />
<link rel="stylesheet" href="css/page2.css" />
<link rel="stylesheet" href="css/page3.css" />
<link rel="stylesheet" href="css/pageVis.css" />
<link rel="stylesheet" href="css/pageEnd.css" />
<title>K-POP 사랑 노래 속 화자 페르소나 분석</title>
</head>
<body>
<div id="mainContainer">
<div id="page1" class="page">
<div class="leftTap">
<div class="newChatBox buttonHover">
<svg
class="svgNewChatPlus"
width="19"
height="19"
viewBox="0 0 19 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_183_151)">
<path
d="M9.13037 4.09164V14.4506"
stroke="white"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M3.94971 9.27118H14.3087"
stroke="white"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
<defs>
<clipPath id="clip0_183_151">
<rect
width="17.7582"
height="17.7582"
fill="white"
transform="translate(0.250488 0.391846)"
/>
</clipPath>
</defs>
</svg>
New Chat
</div>
<div class="chatList">
<div class="chatItem">
<svg
class="svgChatItem"
width="19"
height="19"
viewBox="0 0 19 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.51 11.3875C16.51 11.78 16.3541 12.1564 16.0766 12.4339C15.7991 12.7114 15.4227 12.8673 15.0302 12.8673H6.1511L3.19141 15.827V3.98824C3.19141 3.59576 3.34732 3.21936 3.62484 2.94183C3.90237 2.6643 4.27877 2.50839 4.67126 2.50839H15.0302C15.4227 2.50839 15.7991 2.6643 16.0766 2.94183C16.3541 3.21936 16.51 3.59576 16.51 3.98824V11.3875Z"
stroke="#ECECF1"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<div>비주얼라이제이션 F조</div>
</div>
</div>
</div>
<div id="chatContent">
<div id="chatDialogMain" class="cdContainer">
<div id="chatDialogMainContainer">
<div id="chatDialogTitle">
<div id="chatDialogTitleFirstLine">K-POP 사랑 노래 속</div>
<div id="chatDialogTitleSecondLine">화자 페르소나 분석</div>
<div id="chatDialogSubTitle">: ChatGPT를 활용하여</div>
</div>
<div id="chatDialogHowtoUse">
<div class="cd-htu-col">
<div class="cd-htu-title">
<div class="cd-htu-title-sym">
<svg
width="27"
height="27"
viewBox="0 0 27 27"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_44_17)">
<path
d="M13.6769 18.8679C16.7417 18.8679 19.2263 16.3833 19.2263 13.3184C19.2263 10.2535 16.7417 7.76898 13.6769 7.76898C10.612 7.76898 8.12744 10.2535 8.12744 13.3184C8.12744 16.3833 10.612 18.8679 13.6769 18.8679Z"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M13.6768 1.1098V3.32958"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M13.6768 23.3077V25.5275"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M5.04346 4.68353L6.6195 6.25957"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M20.7388 20.3777L22.3148 21.9537"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M1.46826 13.3188H3.68804"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M23.6641 13.3188H25.8838"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M5.04346 21.9537L6.6195 20.3777"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M20.7388 6.25957L22.3148 4.68353"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
<defs>
<clipPath id="clip0_44_17">
<rect
width="26.6373"
height="26.6373"
fill="white"
transform="translate(0.357422 -6.10352e-05)"
/>
</clipPath>
</defs>
</svg>
</div>
<div class="cd-htu-title-text">프로젝트 소개</div>
</div>
<div class="cd-hts-msgs">
<div class="cd-hts-msg">
우리가 듣는 K-POP 속 화자들은
<br />
어떤 태도로 사랑하고 있을까요?
</div>
<div class="cd-hts-msg">
저희는 이 궁금증을 해결하기 위해
<br />
K-POP 대표 사랑노래 346곡을
<br />
모아보았어요.
</div>
<div class="cd-hts-msg">
GPT를 활용해 가사 속 화자의 태도를
<br />
수치화시키고, 그래프를 그렸어요.
<br />
저희가 발견한 페르소나를 만나보세요.
</div>
</div>
</div>
<div class="cd-htu-col">
<div class="cd-htu-title">
<div class="cd-htu-title-sym">
<svg
width="28"
height="27"
viewBox="0 0 28 27"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M4.83936 14.9834L16.4932 2.49713L13.9959 11.6537H23.1525L11.4987 24.1399L13.9959 14.9834H4.83936Z"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
<div class="cd-htu-title-text">사용방법</div>
</div>
<div class="cd-hts-msgs">
<div class="cd-hts-msg">
Step 1. 아래 네 곡 중 한 곡을 골라
<br />
챗봇에게 태도 분석을 요청해보세요.
</div>
<div class="cd-hts-msg">
Step 2. 분석 결과를 받고, 고른 곡이
<br />
데이터 사분면 상 어디에 위치해있는
<br />
지 확인해보세요.
</div>
<div class="cd-hts-msg">
Step 3. 그래프로 K-POP 사랑노래들의
<br />
전체적인 분포를 확인해보세요.
<br />
어떤 페르소나를 발견했는지 살펴보세요.
</div>
<div class="cd-hts-msg">
Step 4. 궁금한 페르소나를 클릭해,
<br />
페르소나에 대한 자세한 설명과
<br />
대표곡들을 확인해보세요.
</div>
</div>
</div>
<div class="cd-htu-col">
<div class="cd-htu-title">
<div class="cd-htu-title-sym">
<svg
width="27"
height="27"
viewBox="0 0 27 27"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_183_5)">
<path
d="M11.5315 4.28405L2.13072 19.9779C1.9369 20.3135 1.83435 20.6941 1.83326 21.0817C1.83218 21.4692 1.9326 21.8504 2.12454 22.1871C2.31648 22.5238 2.59324 22.8045 2.9273 23.001C3.26135 23.1976 3.64106 23.3033 4.02863 23.3075H22.8301C23.2177 23.3033 23.5974 23.1976 23.9314 23.001C24.2655 22.8045 24.5423 22.5238 24.7342 22.1871C24.9261 21.8504 25.0266 21.4692 25.0255 21.0817C25.0244 20.6941 24.9218 20.3135 24.728 19.9779L15.3273 4.28405C15.1294 3.95786 14.8508 3.68818 14.5184 3.50101C14.1859 3.31384 13.8109 3.21552 13.4294 3.21552C13.0479 3.21552 12.6728 3.31384 12.3404 3.50101C12.0079 3.68818 11.7293 3.95786 11.5315 4.28405Z"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M13.4285 9.98907V14.4286"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M13.4285 18.8679H13.4416"
stroke="white"
stroke-width="1.66483"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
<defs>
<clipPath id="clip0_183_5">
<rect
width="26.6373"
height="26.6373"
fill="white"
transform="translate(0.11084)"
/>
</clipPath>
</defs>
</svg>
</div>
<div class="cd-htu-title-text">주의사항</div>
</div>
<div class="cd-hts-msgs">
<div class="cd-hts-msg">
챗봇의 판단은 정량적 수치에 근거하므로,
<br />
약간의 오차가 발생할 수 있습니다.
</div>
<div class="cd-hts-msg lg">
이 프로젝트는 Apple Music이 선별한
<br />
2004년~2023년 사이의 K-POP
<br />
대표곡 목록에 근거해 사랑노래를
<br />
선정하였습니다.
</div>
</div>
</div>
</div>
</div>
</div>
<div id="chatDialogThread" class="cdContainer"></div>
<div id="chatInterface">
<div id="chatInterfaceWindow">
<div id="chatInterfaceShadow"></div>
<div id="chatInterfaceInput">
<div id="chatPInputItems">
<div id="cpi-ld" class="chatPInputItem buttonHover">
LOVE DIVE - IVE (아이브)
</div>
<div id="cpi-tm" class="chatPInputItem buttonHover">
Trouble Maker - 트러블메이커
</div>
<div id="cpi-vd" class="chatPInputItem buttonHover">
공허해 - WINNER
</div>
<div id="cpi-ch" class="chatPInputItem buttonHover">
사슬 - VIXX (빅스)
</div>
</div>
<div id="chatPrompt">
<div id="chatPromptPlaceholder">Send a message.</div>
<div id="chatPromptTextBox">ddd</div>
<div id="chatPromptBtn">
<svg
id="promptSendBtnInactive"
width="19"
height="18"
viewBox="0 0 19 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_44_69)">
<path
d="M16.1991 9.70064C16.3464 9.62682 16.4703 9.51348 16.5568 9.37329C16.6434 9.2331 16.6892 9.0716 16.6892 8.90685C16.6892 8.7421 16.6434 8.58059 16.5568 8.44041C16.4703 8.30022 16.3464 8.18688 16.1991 8.11306L3.76841 1.89769C3.61428 1.82057 3.44104 1.78997 3.26981 1.80963C3.09859 1.82929 2.93679 1.89836 2.80415 2.00841C2.67151 2.11845 2.57377 2.26472 2.52284 2.42937C2.47191 2.59403 2.47 2.76994 2.51735 2.93566L3.78617 7.3752C3.83924 7.56075 3.95132 7.72396 4.10545 7.84012C4.25957 7.95627 4.44735 8.01905 4.64034 8.01894H8.69897C8.93446 8.01894 9.1603 8.11249 9.32682 8.279C9.49333 8.44552 9.58688 8.67136 9.58688 8.90685C9.58688 9.14234 9.49333 9.36818 9.32682 9.53469C9.1603 9.70121 8.93446 9.79476 8.69897 9.79476H4.64034C4.44735 9.79465 4.25957 9.85743 4.10545 9.97358C3.95132 10.0897 3.83924 10.2529 3.78617 10.4385L2.51823 14.878C2.4708 15.0437 2.47259 15.2196 2.5234 15.3843C2.57421 15.5489 2.67183 15.6952 2.80437 15.8054C2.9369 15.9155 3.09862 15.9847 3.2698 16.0045C3.44099 16.0243 3.61423 15.9939 3.76841 15.9169L16.1991 9.70153V9.70064Z"
fill="#8E8EA0"
/>
</g>
<defs>
<clipPath id="clip0_44_69">
<rect
width="17.7582"
height="17.7582"
fill="white"
transform="matrix(0 1 -1 0 18.4646 0.0274239)"
/>
</clipPath>
</defs>
</svg>
<svg
id="promptSendBtnActive"
width="18"
height="18"
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_225_16)">
<path
d="M15.493 9.67322C15.6403 9.5994 15.7641 9.48605 15.8506 9.34587C15.9372 9.20568 15.983 9.04418 15.983 8.87943C15.983 8.71467 15.9372 8.55317 15.8506 8.41299C15.7641 8.2728 15.6403 8.15945 15.493 8.08563L3.06223 1.87027C2.9081 1.79315 2.73486 1.76255 2.56364 1.78221C2.39241 1.80187 2.23061 1.87094 2.09797 1.98098C1.96533 2.09103 1.86759 2.2373 1.81666 2.40195C1.76573 2.5666 1.76383 2.74252 1.81117 2.90823L3.07999 7.34778C3.13306 7.53333 3.24515 7.69654 3.39927 7.81269C3.5534 7.92885 3.74117 7.99162 3.93416 7.99152H7.9928C8.22828 7.99152 8.45413 8.08506 8.62064 8.25158C8.78716 8.41809 8.8807 8.64394 8.8807 8.87943C8.8807 9.11491 8.78716 9.34076 8.62064 9.50727C8.45413 9.67379 8.22828 9.76734 7.9928 9.76734H3.93416C3.74117 9.76723 3.5534 9.83 3.39927 9.94616C3.24515 10.0623 3.13306 10.2255 3.07999 10.4111L1.81206 14.8506C1.76462 15.0163 1.76641 15.1922 1.81722 15.3568C1.86803 15.5215 1.96565 15.6678 2.09819 15.778C2.23073 15.8881 2.39245 15.9573 2.56363 15.9771C2.73481 15.9969 2.90805 15.9664 3.06223 15.8895L15.493 9.6741V9.67322Z"
fill="white"
/>
</g>
<defs>
<clipPath id="clip0_225_16">
<rect
width="17.7582"
height="17.7582"
fill="white"
transform="matrix(0 1 -1 0 17.7583 0)"
/>
</clipPath>
</defs>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="page2" class="page">
<div class="leftTap">
<div class="newChatBox buttonHover">
<svg
class="svgNewChatPlus"
width="19"
height="19"
viewBox="0 0 19 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_183_151)">
<path
d="M9.13037 4.09164V14.4506"
stroke="white"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M3.94971 9.27118H14.3087"
stroke="white"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
<defs>
<clipPath id="clip0_183_151">
<rect
width="17.7582"
height="17.7582"
fill="white"
transform="translate(0.250488 0.391846)"
/>
</clipPath>
</defs>
</svg>
New Chat
</div>
<div class="chatList">
<div id="chatItemLoveDive" class="chatItem buttonHover">
<svg
class="svgChatItem"
width="19"
height="19"
viewBox="0 0 19 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.51 11.3875C16.51 11.78 16.3541 12.1564 16.0766 12.4339C15.7991 12.7114 15.4227 12.8673 15.0302 12.8673H6.1511L3.19141 15.827V3.98824C3.19141 3.59576 3.34732 3.21936 3.62484 2.94183C3.90237 2.6643 4.27877 2.50839 4.67126 2.50839H15.0302C15.4227 2.50839 15.7991 2.6643 16.0766 2.94183C16.3541 3.21936 16.51 3.59576 16.51 3.98824V11.3875Z"
stroke="#ECECF1"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<div>LOVE DIVE</div>
</div>
<div id="chatItemTroubleMaker" class="chatItem buttonHover">
<svg
class="svgChatItem"
width="19"
height="19"
viewBox="0 0 19 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.51 11.3875C16.51 11.78 16.3541 12.1564 16.0766 12.4339C15.7991 12.7114 15.4227 12.8673 15.0302 12.8673H6.1511L3.19141 15.827V3.98824C3.19141 3.59576 3.34732 3.21936 3.62484 2.94183C3.90237 2.6643 4.27877 2.50839 4.67126 2.50839H15.0302C15.4227 2.50839 15.7991 2.6643 16.0766 2.94183C16.3541 3.21936 16.51 3.59576 16.51 3.98824V11.3875Z"
stroke="#ECECF1"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<div>Trouble Maker</div>
</div>
<div id="chatItemEmpty" class="chatItem buttonHover">
<svg
class="svgChatItem"
width="19"
height="19"
viewBox="0 0 19 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.51 11.3875C16.51 11.78 16.3541 12.1564 16.0766 12.4339C15.7991 12.7114 15.4227 12.8673 15.0302 12.8673H6.1511L3.19141 15.827V3.98824C3.19141 3.59576 3.34732 3.21936 3.62484 2.94183C3.90237 2.6643 4.27877 2.50839 4.67126 2.50839H15.0302C15.4227 2.50839 15.7991 2.6643 16.0766 2.94183C16.3541 3.21936 16.51 3.59576 16.51 3.98824V11.3875Z"
stroke="#ECECF1"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<div>공허해</div>
</div>
<div id="chatItemChainedUp" class="chatItem buttonHover">
<svg
class="svgChatItem"
width="19"
height="19"
viewBox="0 0 19 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M16.51 11.3875C16.51 11.78 16.3541 12.1564 16.0766 12.4339C15.7991 12.7114 15.4227 12.8673 15.0302 12.8673H6.1511L3.19141 15.827V3.98824C3.19141 3.59576 3.34732 3.21936 3.62484 2.94183C3.90237 2.6643 4.27877 2.50839 4.67126 2.50839H15.0302C15.4227 2.50839 15.7991 2.6643 16.0766 2.94183C16.3541 3.21936 16.51 3.59576 16.51 3.98824V11.3875Z"
stroke="#ECECF1"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<div>사슬</div>
</div>
</div>
</div>
<div id="lyricLines"></div>
<div id="lyricVis">
<div id="lyricGraph">
<div id="lgTitle">LOVE DIVE</div>
<div id="lgvCols"></div>
<!-- <div id="lgCount">
<div class="lgvCol">27</div>
<div class="lgvCol">27</div>
<div class="lgvCol">27</div>
<div class="lgvCol">27</div>
</div>
<div id="lgVis">
<div class="lgvCol">
<div class="lgvBlock"></div>
</div>
<div class="lgvCol">수동</div>
<div class="lgvCol">주체</div>
<div class="lgvCol">종속</div>
</div>
<div id="lgLabel">
<div class="lgvCol">능동</div>
<div class="lgvCol">수동</div>
<div class="lgvCol">주체</div>
<div class="lgvCol">종속</div>
</div> -->
</div>
</div>
</div>
<div id="page3" class="page">
<!--
대표곡의 분석그래프 -> 페르소나 페이지로 넘어가기
페르소나별 3곡의 대표곡 왼쪽 column, 페르소나의 정의 오른쪽 칼럼
-->
<div id="p3LeftTap">
<div id="p3LeftOverall" class="p3LeftContent">
<div id="mainSongs">
<!-- <div class="mainSong buttonHoverBlue">
<div class="mainSongTitle">LOVE DIVE</div>
<div class="mainSongSinger">IVE (아이브)</div>
</div>
<div class="mainSong buttonHoverBlue">
<div class="mainSongTitle">주문 (Mirotic)</div>
<div class="mainSongSinger">동방신기 (TVXQ!)</div>
</div>
<div class="mainSong buttonHoverBlue">
<div class="mainSongTitle">Hurricane Venus</div>
<div class="mainSongSinger">보아 (BoA)</div>
</div> -->
</div>
<div id="mainSongLyric">
<!-- <p class="p-msl">왜 너야 미쳐버릴 것 같아</p>
<p class="p-msl">대체 뭐야 반해버린 것 같아</p>
<p class="p-msl">하루 종일 머릿속에 맴맴 돌아버려</p> -->
</div>
</div>
<div id="p3LeftSubjectHigh" class="p3LeftContent">
<div class="personaCard">
<div class="pcHeader">남성</div>
<div class="pcImg">
<img src="assets/images/profile_ps10.png" alt="" />
</div>
<div class="pcName">지배자</div>
<div class="pcHashTag">
#강압적인 #소유하고_통제하는 #행동을_지시하는
</div>
</div>
<div class="pcBlank"></div>
<div class="personaCard">
<div class="pcHeader">여성</div>
<div class="pcImg">
<img src="assets/images/profile_ps7.png" alt="" />
</div>
<div class="pcName">강한 자아</div>
<div class="pcHashTag">#주체적 #자기중심적 #내마음에_솔직한</div>
</div>
</div>
<div id="p3LeftSubjectMid" class="p3LeftContent">
<div class="personaCard">
<div class="pcHeader">남성</div>
<div class="pcImg">
<img src="assets/images/profile_ps6.png" alt="" />
</div>
<div class="pcName">약한 자아</div>
<div class="pcHashTag">#주도권_상실 #구차 #매달림 #종속적</div>
</div>
<div class="pcBlank"></div>
<div class="personaCard">
<div class="pcHeader">여성</div>
<div class="pcImg">
<img src="assets/images/profile_ps6.png" alt="" />
</div>
<div class="pcName">약한 자아</div>
<div class="pcHashTag">#주도권_상실 #구차 #매달림 #종속적</div>
</div>
</div>
<div id="p3LeftSubjectLow" class="p3LeftContent">
<div class="personaCard">
<div class="pcHeader">남성</div>
<div class="pcImg">
<img src="assets/images/profile_ps1.png" alt="" />
</div>
<div class="pcName">순종자</div>
<div class="pcHashTag">
#헌신하는 #상대방에_완전히_종속된 #수용적인
</div>
</div>
<div class="pcBlank"></div>
<div class="personaCard">
<div class="pcHeader">여성</div>
<div class="pcImg">
<img src="assets/images/profile_ps8.png" alt="" />
</div>
<div class="pcName">불도저</div>
<div class="pcHashTag">
#적극적으로_구애하는 #고백의말 #행동파
</div>
</div>
</div>
<div id="p3LeftActiveHigh" class="p3LeftContent">
<div class="personaCard">
<div class="pcHeader">남성</div>
<div class="pcImg">
<img src="assets/images/profile_ps4.png" alt="" />
</div>
<div class="pcName">숭배자</div>
<div class="pcHashTag">#예찬 #너가_최고야 #너로인해_구원받는</div>
</div>
<div class="pcBlank"></div>
<div class="personaCard">
<div class="pcHeader">여성</div>
<div class="pcImg">
<img src="assets/images/profile_ps3.png" alt="" />
</div>
<div class="pcName">유혹자</div>
<div class="pcHashTag">
#유혹하는 #직설적_혹은_은근한 #매력어필
</div>
</div>
</div>
<div id="p3LeftActiveMid" class="p3LeftContent">
<div class="personaCard">
<div class="pcHeader">남성</div>
<div class="pcImg">
<img src="assets/images/profile_ps9.png" alt="" />
</div>
<div class="pcName">수호자</div>
<div class="pcHashTag">#보호 #영역표시 #경쟁하고_쟁취하는</div>
</div>
<div class="pcBlank"></div>
<div class="personaCard">
<div class="pcHeader">여성</div>
<div class="pcImg">
<img src="assets/images/profile_ps5.png" alt="" />
</div>
<div class="pcName">순정파</div>
<div class="pcHashTag">
#순정만화_주인공 #너만을_바라보는 #낭만적
</div>
</div>
</div>
<div id="p3LeftActiveLow" class="p3LeftContent">
<div class="personaCard">
<div class="pcHeader">남성</div>
<div class="pcImg">
<img src="assets/images/profile_ps1.png" alt="" />
</div>
<div class="pcName">순종자</div>
<div class="pcHashTag">
#헌신하는 #상대방에_완전히_종속된 #수용적인
</div>
</div>
<div class="pcBlank"></div>
<div class="personaCard">
<div class="pcHeader">여성</div>
<div class="pcImg">
<img src="assets/images/profile_ps8.png" alt="" />
</div>
<div class="pcName">약한 자아</div>
<div class="pcHashTag">#주도권_상실 #구차 #매달림 #종속적</div>
</div>
</div>
</div>
<div id="p3Main">
<div id="p3MainL">
<input
id="rangeSubjectVertical"
type="range"
min="0"
max="2"
step="1"
value="2"
/>
</div>
<div id="p3MainC">
<div id="p3MainCT"></div>
<div id="p3MainCC"></div>
<div id="p3MainCB">
<input
id="rangeActive"
type="range"
min="0"
max="2"
step="1"
value="2"
/>
</div>
</div>
<div id="p3MainR"></div>
</div>
<div id="p3RightTap">
<div id="p3RightOverall" class="p3RightContent">
<div id="personaImg">
<!-- <img src="assets/images/profile_ps9.png" alt="" /> -->
</div>
<div id="personaName"></div>
<div id="personaHashtag">
<!-- #보호 #영역표시 #경쟁하고_쟁취하는 -->
</div>
<div id="personaDesc">
<!-- <p class="p-pd">
‘수호자’는 상대방을 보호하고자 하는 욕구가 강하며, 상대방을
본인의 소유 하의 것으로 인식한다.
</p>
<p class="p-pd">
이들은 마치 ‘영역 표시'를 하듯 다른 이성을 견제한다. 그들과의
경쟁을 통해 상대방을 쟁취하고자 하는 가사가 종종 발견된다.
</p> -->
</div>
</div>
<div id="p3RightSubject" class="p3RightContent">
<div class="p3SubjectText">
[주체 - 종속] 축을 중심으로 봤을 때,
<br />
남성 화자는 1. ‘
<span class="txt-ps-10">지배자</span>’ 2. ‘
<span class="txt-ps-6">약한 자아</span>’ 3. ‘
<span class="txt-ps-1">순종자</span>’ 가,
<br />
여성 화자는 1. ‘
<span class="txt-ps-7">강한 자아</span>’ 2. ‘
<span class="txt-ps-6">약한 자아</span>’ 3. ‘
<span class="txt-ps-8">불도저</span>’가각각 대표적인 페르소나로
발견되었다. <br /><br />
주체성이 강한 남성 화자 페르소나는 ‘
<span class="txt-ps-10">지배자</span>’로, 상대방의 위에서 그를
소유하고 통제하려는 페르소나이다. 종속성이 강한 남성 화자
페르소나는 ‘ <span class="txt-ps-1">순종자</span>’로, 상대방의
하위에서 그에게 헌신하고 복종하는 페르소나이다. <br /><br />
반면, 주체성이 강한 여성 화자 페르소나는 ‘
<span class="txt-ps-7">강한 자아</span>’로, 자기중심적으로 관계를
바라보고 본인의 마음에만 집중하는 페르소나이다. 종속성이 강한 여성
페르소나는 ‘ <span class="txt-ps-8">불도저</span>’로, 자신의
마음을 저돌적으로 표현하는 페르소나이다. <br /><br />
이때, 남성 화자와 여성 화자의 각각의 주체성/종속성에 대한 해석이
분화한다. 남성은 주체성이 강해질 때 군림하는 권위적인 모습을,
종속성이 강해질 때 복종하는 약한 모습을 보이는 반면, 여성은
주체성이 강해질 때 자기애가 높은 자기중심적 모습을, 종속성이
강해질 때 상대 중심적인 모습을 보인다.
</div>
</div>
<div id="p3RightActive" class="p3RightContent">
<div class="p3ActiveText">
[능동 - 수동] 축을 중심으로 봤을 때,
<br />
남성 화자는 1. ‘
<span class="txt-ps-4">숭배자</span>’ 2. ‘
<span class="txt-ps-9">수호자</span>’ 3. ‘
<span class="txt-ps-1">순종자</span>’ 가,
<br />
여성 화자는 1. ‘
<span class="txt-ps-3">유혹자</span>’ 2. ‘
<span class="txt-ps-5">순정파</span>’ 3. ‘
<span class="txt-ps-6">약한 자아</span>’가 각각 대표적인
페르소나로 발견되었다. <br /><br />
이때, 남성 화자에게서 발견된 상대방을 예찬하고 구원자로 여기는 ‘
<span class="txt-ps-4">숭배자</span>', 상대방을 소중히 여기며
보호하려는 ‘ <span class="txt-ps-9">수호자</span>', 그리고
상대방에게 헌신하고 복종하는 ‘
<span class="txt-ps-1">순종자</span>'는 모두 상대방을 신격화하는
‘아가페적' 사랑을 하는 페르소나들이다. <br /><br />
반면, 여성 화자에게서 발견된 상대방을 유혹하여 쟁취하고자 하는 ‘
<span class="txt-ps-3">유혹자</span>', 순정만화 주인공과 같이
사랑을 고백하는 ‘ <span class="txt-ps-5">순정파</span>', 그리고
관계 혹은 마음의 주도권을 뺏기는 ‘
<span class="txt-ps-6">약한 자아</span>'는 모두 현실에 기반한
상대방과의 관계에 집중하는 ‘에로스적' 사랑을 하는 페르소나들이다.
</div>
</div>
</div>
</div>
<div id="pageVis" class="page">
<div id="information">
<div id="song_info">
<div id="albumCover"></div>
<div id="sdTitle" class="songDesc">
<b>제목</b>
</div>
<div id="sdSinger" class="songDesc">
<b>가수</b>
</div>
<div id="sdFM" class="songDesc"></div>
<div id="sdAppleMusicYear" class="songDesc">
<b>남/여</b>
</div>
<div id="sdActiveSubject" class="songDesc">
<b>애플 뮤직 연도</b>
</div>
<div id="sdPersona" class="songDesc">
<b>페르소나</b>
</div>
<div id="sdLyric" class="songDesc">
<b>능동, 주체</b>
</div>
<div class="songDesc">
<b>가사</b>
</div>
<div id="lyricBox"></div>
</div>
</div>
<div id="visualization">
<div id="d3graph"></div>
</div>
<div id="interface">
<div id="dataLegend">
<h3 class="legendTitle">남성/여성 아이돌</h3>
<div class="legendOptions">
<div id="legend_fm_m" class="legendOption">
<div class="legendColor lg-fm-m"></div>
<div class="txt-fm-m">남성</div>
</div>
<div id="legend_fm_f" class="legendOption">
<div class="legendColor lg-fm-f"></div>
<div class="txt-fm-f">여성</div>
</div>
<div id="legend_fm_fm" class="legendOption">
<div class="legendColor lg-fm-fm"></div>
<div class="txt-fm-fm">혼성</div>
</div>
</div>
<h3 class="legendTitle">페르소나</h3>
<div class="legendOptions">
<div id="legend_ps_1" class="legendOption">
<div class="legendColor lg-ps-1"></div>
<div class="txt-ps-1">순종자</div>
</div>
<div id="legend_ps_2" class="legendOption">
<div class="legendColor lg-ps-2"></div>
<div class="txt-ps-2">순수파</div>
</div>
<div id="legend_ps_3" class="legendOption">
<div class="legendColor lg-ps-3"></div>
<div class="txt-ps-3">유혹자</div>
</div>
<div id="legend_ps_4" class="legendOption">
<div class="legendColor lg-ps-4"></div>
<div class="txt-ps-4">숭배자</div>
</div>
<div id="legend_ps_5" class="legendOption">
<div class="legendColor lg-ps-5"></div>
<div class="txt-ps-5">순정파</div>
</div>
<div id="legend_ps_6" class="legendOption">
<div class="legendColor lg-ps-6"></div>
<div class="txt-ps-6">약한 자아</div>
</div>
<div id="legend_ps_7" class="legendOption">
<div class="legendColor lg-ps-7"></div>
<div class="txt-ps-7">강한 자아</div>
</div>
<div id="legend_ps_8" class="legendOption">
<div class="legendColor lg-ps-8"></div>
<div class="txt-ps-8">불도저</div>
</div>
<div id="legend_ps_9" class="legendOption">
<div class="legendColor lg-ps-9"></div>
<div class="txt-ps-9">수호자</div>
</div>
<div id="legend_ps_10" class="legendOption">
<div class="legendColor lg-ps-10"></div>
<div class="txt-ps-10">지배자</div>
</div>
</div>
</div>
<div class="interfaceOption">
<h3 class="interfaceOptionTitle">색상 코딩</h3>
<div class="radioOptions">
<div>
<input
type="radio"
id="ccFM"
name="colorCategory"
value="FM"
checked
/>
<label for="ccFM">남성/여성 아이돌</label>
</div>
<div>
<input
type="radio"
id="ccPS"
name="colorCategory"
value="Persona"
/>
<label for="ccPS">페르소나</label>
</div>
</div>
</div>
<div class="interfaceOption">
<h3 class="interfaceOptionTitle">년도 별 보기</h3>
<div class="checkboxes">
<div>
<input type="checkbox" id="cb_years" name="cb_years" />
<label for="cb_years">년도 별 보기</label>
</div>
</div>
<div class="inputRangeli">
<label id="inputRangeYearLabel" for="rangeYear">년도: 2022</label>
<input
type="range"
id="rangeYear"
name="rangeYear"
min="2004"
max="2022"
value="2022"
disabled
/>
</div>
</div>
</div>
</div>
<div id="pageEnd" class="page">
<div class="leftTap">
<div class="newChatBox buttonHover">
<svg
class="svgNewChatPlus"
width="19"
height="19"
viewBox="0 0 19 19"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clip-path="url(#clip0_183_151)">
<path
d="M9.13037 4.09164V14.4506"
stroke="white"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M3.94971 9.27118H14.3087"
stroke="white"
stroke-width="1.47985"
stroke-linecap="round"
stroke-linejoin="round"
/>
</g>
<defs>
<clipPath id="clip0_183_151_END">
<rect
width="17.7582"
height="17.7582"
fill="white"
transform="translate(0.250488 0.391846)"
/>
</clipPath>
</defs>
</svg>