-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmelon.html
13227 lines (8818 loc) · 557 KB
/
melon.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="ko">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>멜론차트>멜론 TOP 100>실시간>멜론</title>
<meta name="keywords" content="음악서비스, 멜론차트, 멜론TOP100, 최신음악, 인기가요, 뮤직비디오, 앨범, 플레이어, 스트리밍, 다운로드, 아티스트플러스, 아티스트채널" />
<meta name="description" content="국내 최대 1,000만곡 확보 No.1 음악사이트, 멜론! 최신음악과 실시간 차트는 기본, 내 취향을 아는 똑똑한 추천 라디오, 내가 좋아하는 아티스트의 새로운 소식까지 함께 즐겨보세요." />
<meta name="naver-site-verification" content="f13fc46b807bef984aa341efeb1adec8de12264c"/>
<meta property="fb:app_id" content="357952407588971"/>
<meta property="og:title" content="Melon"/>
<meta property="og:image" content="http://cdnimg.melon.co.kr/resource/image/web/common/logo_melon142x99.png"/>
<meta property="og:description" content="음악이 필요한 순간, 멜론"/>
<meta property="og:url" content="http://www.melon.com/chart/index.htm"/>
<meta property="og:type" content="website"/>
<meta name="viewport" content="width=device-width"/>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?2" id="favicon"/>
<script type="text/javascript">
checkWin8Metro();
function checkWin8Metro(){
var userAgent = navigator.userAgent.toLowerCase();
var canRunActiveX = false;
try
{
canRunActiveX = !!new ActiveXObject("htmlfile");
}
catch (e)
{
canRunActiveX = false;
}
if ((userAgent.indexOf("windows nt 6.2") >= 0 || userAgent.indexOf("windows nt 6.3") >= 0 ) && userAgent.indexOf("msie") >= 0)
{
// windows 8
if (canRunActiveX == false)
{
document.location.href = "http://t.melon.com";
}
}
}
</script>
<link rel="stylesheet" href="https://cdnimg.melon.co.kr/static/web/resource/style/w1/8b/9/1y1v0s21vgv.css" type="text/css" />
<link rel="stylesheet" href="https://cdnimg.melon.co.kr/static/web/resource/style/w1/5r/m/14j3tr44urn.css" type="text/css" />
<!-- 댓글 css 파일 네임 변경 -->
<link rel="stylesheet" href="https://cdnimg.melon.co.kr/static/web/resource/style/w1/qd/e/uolshpokn9.css" type="text/css" />
<link rel="stylesheet" href="/resource/style/web/chart/melonweb_chart_4x.css" type="text/css" />
<link rel="stylesheet" href="https://cdnimg.melon.co.kr/static/web/resource/style/w1/g6/0/kvg1wtiobj.css" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Nunito:400" rel="stylesheet">
<script type="text/javascript" src="/resource/script/web/common/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="//member.melon.com/resource/script/web/member/melonweb_member_external.js?tm=20180115"></script>
<script type="text/javascript" src="https://cdnimg.melon.co.kr/static/web/resource/script/w1/g8/u/kv5d3h4q8t.js"></script>
<script type="text/javascript">
MelonPersonal.init();
(function() {
WEBPOCIMG = {
defaultImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
if(width == 0) width = 500;
var thumbType = "_500";
//가장 큰사이즈로 리사이즈함
var thumbType = "_500";
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noAlbum" + thumbType + "_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultAlbumImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
if(width == 0) width = 500;
//가장 큰사이즈로 리사이즈함
var thumbType = "_500";
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noAlbum" + thumbType + "_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultArtistImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
if(width == 0) width = 300;
//가장 큰사이즈로 리사이즈함
var thumbType = "_300";
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noArtist" + thumbType + "_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultDjImg : function(obj){
},
defaultMvImg : function(obj, width, height){
if(width == null || width == '') width = $(obj).width();
if(height == null || height == '') height = $(obj).height();
var ratio43 = Math.floor((4/3)*10)/10;
var ratio169 = Math.floor((16/9)*10)/10;
var ratioObj = Math.floor((width/height)*10)/10;
var ratio = "4x3";
if(ratioObj == ratio43){
ratio = "4x3"; //contentsType = "mv43";
} else if(ratioObj == ratio169){
ratio = "16x9"; //contentsType = "mv169";
} else {
if(ratioObj > 1.5) ratio = "16x9";
else ratio = "4x3";
}
if(width == 0) width = 640;
if(height == 0) ratio = "16x9";
//가장 큰사이즈로 리사이즈함
var thumbType = "_" + ratio + "_640";
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noMovie" + thumbType + "_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultPlaylistImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
if(width == 0) width = 500;
//가장 큰사이즈로 리사이즈함
var thumbType = "_500";
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noAlbum" + thumbType + "_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultMemberImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
if(width == 0) width = 300;
//가장 큰사이즈로 리사이즈함
var thumbType = "_300";
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noArtist" + thumbType + "_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultPhotoImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
if(width == 0) width = 500;
//가장 큰사이즈로 리사이즈함
var thumbType = "_500";
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noAlbum" + thumbType + "_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultShopImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
if(width == 0) width = 256;
//가장 큰사이즈로 리사이즈함
var thumbType = "_256";
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noProduct" + thumbType + "_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultShowwingImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
var thumbType = "_256";
if(width > 0 && width <= 300){
thumbType = "_256";
} else {
thumbType = "_313";//추후 조절값
}
var altSrc = "http://cdnimg.melon.co.kr/resource/image/web/default/noShowing" + thumbType + ".jpg";
if(obj.src != altSrc){
obj.src = altSrc;
}
},
defaultTicketImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
var thumbType = "_256";
if(width > 0 && width <= 300){
thumbType = "_256";
} else {
thumbType = "_313";//추후 조절값
}
var altSrc = "http://cdnimg.melon.co.kr/resource/image/web/default/noTicket" + thumbType + ".png";
if(obj.src != altSrc){
obj.src = altSrc;
}
},
defaultSmartRadioImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noSmartradio_59_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
},
defaultConcertImg : function(obj, width){
if(width == null || width == '') width = $(obj).width();
var defaultImg = "http://cdnimg.melon.co.kr/resource/image/web/default/noAlbum_114_160727.jpg/melon/resize/" + width;
if(obj.src != defaultImg){
obj.src = defaultImg;
}
}
}
,WEBELLIPSIS = {
ellipsis : function(ellipsisName,moreClassName,eWidth){
//아티스트 더보기
var arObj = $('.' + ellipsisName);
for(var i = 0; i < arObj.length; i++){
if (arObj.eq(i).width() > eWidth ){
arObj.eq(i).parent().parent().parent().find('.' + moreClassName).show();
}
}
}
}
})();
</script>
</head>
<body>
<div id="wrap">
<div id="skip_nav">skip navigation
<ul>
<li><a href="#gnb_menu">메뉴</a></li>
<li><a href="#id_box">마이영역</a></li>
<li><a href="#conts_section">본문</a></li>
<li><a href="#footer">하단 정보</a></li>
</ul>
</div>
<!-- header -->
<div id="header" class="gnb2_expn">
<div id="header_wrap" class="my_fold"> <!-- 1024이상 마이영역 접었을때 클래스 my_fold 추가 -->
<div id="gnb" class="clfix">
<!-- 상단 빠른 메뉴 -->
<div id="util_menu">
<p class="none">상단 빠른 메뉴</p>
<div class="top_left">
<ul class="clfix">
<li class="first_child d_melon_ticket"><a href="http://ticket.melon.com/main/index.htm" title="멜론 티켓" class="menu01 mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=V08&ACTION_AF_CLICK=V1"><span>멜론 티켓</span></a></li>
<li><a href="http://aztweb.melon.com/aztalk/guide/web/main.htm" title="멜론 아지톡" class="menu03 mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=V05&ACTION_AF_CLICK=V1"><span>멜론 아지톡</span></a></li><!-- 161206 -->
</ul>
</div>
<!-- 140603_수정 -->
<div class="top_right ">
<ul class="clfix">
<li class="first_child"><a href="/commerce/pamphlet/web/sale_listMainView.htm" title="이용권구매" class="menu01 mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=B01&ACTION_AF_CLICK=V1"><span>이용권구매</span></a></li>
<li><a href="/event/vip/index.htm" title="VIP혜택관" class="menu02 mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=V06&ACTION_AF_CLICK=V1"><span>VIP혜택관</span></a></li>
<li class="last_child"><a href="/event/index.htm" title="이벤트" class="menu03 mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=B03&ACTION_AF_CLICK=V1"><span>이벤트</span></a></li>
</ul>
</div>
<!-- //140603_수정 -->
</div>
<!-- //상단 빠른 메뉴 -->
<!-- 140603_수정 -->
<h1><a href="http://www.melon.com/index.htm" title="MelOn 로고 - 홈으로 이동" class="mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=M01&ACTION_AF_CLICK=V1"><img width="142" height="99" src="http://cdnimg.melon.co.kr/resource/image/web/common/logo_melon142x99.png" alt="MelOn 로고 이미지"/></a></h1>
<!-- //140603_수정 -->
<!-- 통합검색 영역 -->
<fieldset>
<legend>통합검색영역</legend>
<input type="text" title="검색 입력 편집창" placeholder="" name="" id="top_search" style="width:249px" onkeypress="if(event.keyCode == 13){goSearch();}"/><input type="hidden" name="keywordLink" id="keywordLink" value="" />
<button type="button" style="display: none;" id="top_search_autocomplete_toggle" class="btn_icon btn_auto close" title="자동검색 펼침"><span class="odd_span">자동검색 펼침</span></button> <!-- open/close 클래스 사용 -->
<button type="button" class="btn_icon search_m" title="검색"><span class="odd_span">검색</span></button>
<div class="auto_complete" id="top_search_autocomplete"><div class="auto_complete_cont" style="display:block;"><!-- 자동완성 레이어 --></div></div>
<div class="auto_complete" id="top_search_autocomplete_template" style="display: none;"> <!-- 자동완성 레이어 템플릿 -->
<!-- 텍스트 결과 -->
<ul class="text_result">
<li><a href="#" class="autocomplete-label"></a></li>
</ul>
<!-- 섬네일 결과 -->
<ul class="thumb_result">
<li class="cate"></li>
<li class="class02">
<a href="#">
<span class="thumb_40">
<span class="thumb_frame"></span>
<img class="autocomplete-img" width="40" height="40" alt="">
</span>
<div class="info">
<span class="autocomplete-label"></span><br/>
<span><span class="f11 autocomplete-info"></span></span>
</div>
</a>
</li>
</ul>
<!-- 검색어가 없을 때 -->
<ul class="text_result">
<li class="result_none">
<span>해당글자로 시작하는 단어가 없습니다.</span>
</li>
</ul>
</div>
</fieldset>
<form style="display: none" id="searchFrm" method="get" action="">
<input type="hidden" name="q"/>
<input type="hidden" name="section"/>
</form>
<!-- //통합검색 영역 -->
<!-- 실시간 검색어 -->
<div class="realtime_soar_keyword">
<!-- 140519_수정 -->
<a href="http://www.melon.com/search/trend/index.htm" class="title">급상승 키워드</a>
<!-- //140519_수정 -->
<div class="keyword_overlay">
<ol style="overflow:hidden; height:20px;">
<!-- 롤링 영역
<li>
<div style="top:;">
<strong class="order bg2 on"><span class="none">1 위</span></strong>
<a href="#" class="ellipsis" title="something">something</a>
<span class="wrap_rank">
<span class="icon_up">순위상승수</span><span>139</span>
<!- <span class="icon_rank_new">새진입</span>
</span>
</div>
</li>
//롤링 영역 -->
</ol>
<!-- 140423_추가 -->
<a href="http://www.melon.com/search/trend/index.htm" class="keyword_more" title="실시간 순위"><span>더보기 <span></span></span></a>
<!-- //140423_추가 -->
</div>
<!-- 140423_삭제 -->
<!-- <a href="#" class="d_btn_ctrl pause" title="이벤트 일시정지"><span><span class="none">일시정지</span></span></a> -->
<!-- //140423_삭제 -->
</div>
<!-- //실시간 검색어 -->
<!-- 배너 영역 -->
<div class="cmn_banner"></div>
<script type="text/javascript">
MelonPersonal.printLayout();
</script>
</div>
<!-- 140314_gnb마크업 수정 -->
<div id="gnb_menu">
<ul>
<li class="nth1 on">
<a href="http://www.melon.com/chart/index.htm" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=R01&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu01">멜론차트</span></a>
<div class="lay_menu">
<ul>
<li class="first_child on"><a href="http://www.melon.com/chart/index.htm"><span class="menu_chart m1">멜론 TOP 100</span></a></li>
<li class=""><a href="http://www.melon.com/melonaward/timeline.htm?f=c"><span class="menu_chart m2">주간 인기상</span></a></li>
<li class=""><a href="http://www.melon.com/chart/vdo/index.htm"><span class="menu_chart m3">트렌드 차트</span></a></li>
<li class=""><a href="http://www.melon.com/chart/genre/index.htm"><span class="menu_chart m4">장르 스타일 차트</span></a></li>
<li class=""><a href="http://www.melon.com/chart/age/index.htm"><span class="menu_chart m5">시대별 차트</span></a></li>
</ul>
<div class="chart_finder">
<button type="button" class="btn_chart_f" onclick="location.href='http://www.melon.com/chart/search/index.htm'"><span class="odd_span">차트 파인더</span></button>
</div>
</div>
</li>
<li class="nth2">
<a href="http://www.melon.com/new/index.htm" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=C01&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu02 ">최신</span></a>
<div class="lay_menu">
<ul>
<li class="first_child"><a href="http://www.melon.com/new/index.htm"><span class="menu_new m1">최신곡</span></a></li>
<li class=""><a href="http://www.melon.com/new/album/index.htm"><span class="menu_new m2">최신앨범</span></a></li>
<li class=""><a href="http://www.melon.com/new/mv/index.htm"><span class="menu_new m3">최신 뮤직비디오</span></a></li>
<!-- 160404 제거 -->
<!-- // 160404 제거 -->
</ul>
</div>
</li>
<li class="nth3">
<a href="http://www.melon.com/genre/song_list.htm?gnrCode=GN0100" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=C03&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu03">장르</span></a>
<div class="lay_menu">
<ul>
<li class="first_child"><a href="http://www.melon.com/genre/song_list.htm?gnrCode=GN0100"><span class="menu_gnr nm1">한국대중음악</span></a></li>
<li class=""><a href="http://www.melon.com/genre/song_list.htm?gnrCode=GN0900"><span class="menu_gnr nm2">해외POP음악</span></a></li>
<li class=""><a href="http://www.melon.com/genre/song_list.htm?gnrCode=GN1500"><span class="menu_gnr nm3">그외 인기장르</span></a></li>
</ul>
</div>
</li>
<li class="nth4">
<a href="http://www.melon.com/dj/today/djtoday_list.htm" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S04&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu04">멜론DJ</span></a>
<div class="lay_menu">
<ul>
<li class="first_child"><a href="http://www.melon.com/dj/today/djtoday_list.htm"><span class="menu_dj m1">오늘은 뭘 듣지</span></a></li>
<li class=""><a href="http://www.melon.com/dj/essential/djessential_list.htm"><span class="menu_dj m2">전문가 선곡</span></a></li>
<li class=""><a href="http://www.melon.com/dj/themegenre/djthemegenre_list.htm"><span class="menu_dj m3">#테마장르</span></a></li>
<li class=""><a href="http://www.melon.com/dj/powerdj/djpowerdj_list.htm"><span class="menu_dj m4">파워DJ</span></a></li>
<li class=""><a href="http://www.melon.com/dj/chart/djchart_list.htm"><span class="menu_dj m5">인기</span></a></li>
</ul>
</div>
</li>
<li class="nth5">
<a href="http://www.melon.com/tv/index.htm" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S05&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu05">멜론TV</span></a>
<div class="lay_menu">
<ul>
<li class="first_child"><a href="http://www.melon.com/tv/index.htm"><span class="menu_tv m1">오늘은 뭘 볼까</span></a></li>
<li class=""><a href="http://www.melon.com/tv/mv/index.htm"><span class="menu_tv m2">뮤직비디오</span></a></li>
<li class=""><a href="http://www.melon.com/tv/menu/index.htm?menuSeq=1"><span class="menu_tv m3">멜론 오리지널</span></a></li>
<li class=""><a href="http://www.melon.com/tv/menu/index.htm?menuSeq=4"><span class="menu_tv m4">아티스트 업데이트</span></a></li>
<li class=""><a href="http://www.melon.com/tv/menu/index.htm?menuSeq=3"><span class="menu_tv m5">방송</span></a></li>
</ul>
</div>
</li>
<li class="nth6">
<a href="http://www.melon.com/artistplus/todayupdate/index.htm" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S07&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu06">스타포스트</span></a>
<div class="lay_menu">
<ul>
<li class="first_child"><a href="http://www.melon.com/artistplus/todayupdate/index.htm"><span class="menu_arti m1">NOW</span></a></li>
<li class=""><a href="http://www.melon.com/artistplus/themespecial/index.htm"><span class="menu_arti m2">테마스페셜</span></a></li>
<li class=""><a href="http://www.melon.com/artistplus/artistchart/index.htm"><span class="menu_arti m3">아티스트 랭킹</span></a></li>
<li class=""><a href="http://www.melon.com/artistplus/myranking/index.htm"><span class="menu_arti m4">마이 랭킹</span></a></li>
</ul>
<div class="menu_artist_btn">
<div class="artist_fan">
<button type="button" class="btn_fan" onclick="MELON.WEBSVC.POC.menu.goMyMusicFanSignArtist();"><span class="odd_span">팬맺은 아티스트</span></button>
</div>
<div class="artist_finder">
<button type="button" class="btn_artist_f" onclick="location.href='http://www.melon.com/artistplus/finder/index.htm'"><span class="odd_span">아티스트 파인더</span></button>
</div>
</div>
</div>
</li>
<!-- 160314 수정 -->
<li class="nth7">
<a href="http://www.melon.com/musicstory/today/index.htm" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S09&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu07">멜론매거진</span></a>
</li>
<!-- // 160314 수정 -->
<li class="nth8">
<a href="http://www.melon.com/melonaward/timeline.htm" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S11&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu08">뮤직어워드</span></a>
</li>
<!-- 170531 수정 kjh -->
<li class="nth10">
<a href="http://www.melon.com/flac/index.htm" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=C05&ACTION_AF_CLICK=V1" class="cur_menu mlog"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu12">멜론Hi-Fi</span><span class="icon_new"></span></a>
</li>
<!-- //170531 수정 kjh -->
<li class="nth9 last_child">
<!-- //140523_수정 -->
<a href="#" class="cur_menu mlog_without_page_change" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S99&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu09">더보기</span></a>
<div class="more_wrap" style="display:none"><!-- more_lay일때 display:block -->
<ul>
<li class="first_child"><a href="http://www.melon.com/smartradio/index.htm" class="mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S06&ACTION_AF_CLICK=V1"><span class="menu_more m1">스마트라디오</span></a></li>
<li class=""><a href="http://www.melon.com/edu/index.htm" class="mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=C04&ACTION_AF_CLICK=V1"><span class="menu_more m3">어학</span></a></li>
<li class=""><a href="http://www.melon.com/customer/announce/index.htm" class="mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=V02&ACTION_AF_CLICK=V1"><span class="menu_more m4">공지사항</span></a></li>
</ul>
</div>
</li>
</ul>
<ul class="sub_gnb">
<li class="">
<a href="javascript:MELON.WEBSVC.POC.menu.goMyMusicMain();" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S01&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu10">마이뮤직</span></a>
</li>
<li>
<a href="javascript:MELON.WEBSVC.POC.menu.goFeed();" class="cur_menu mlog" data="LOG_PRT_CODE=1&MENU_PRT_CODE=0&MENU_ID_LV1=&CLICK_AREA_PRT_CODE=S02&ACTION_AF_CLICK=V1"><span class="cur_status none">현재 선택된 메뉴-</span><span class="menu_bg menu11">피드</span><span class="msg_box" style="display: none;"><span class="num">99+</span><span class="none">개</span></span></a>
</li>
</ul>
</div>
<!-- location 기획 요청으로 제거 2014-04-01 -->
<!-- //location -->
</div>
</div>
<!-- //header -->
<div id="cont_wrap" class="clfix">
<div id="conts_section" class="my_fold">
<!-- contents -->
<!-- contents -->
<div id="conts">
<div class="page_header">
<h2 class="title">멜론 TOP100</h2>
<div class="tooltip">
<button type="button" class="button_icons etc tooltip" data-control="dropdown"><span class="none">툴팁보기</span></button>
<div class="layer_popup" role="dialog">
<p class="desc">매시간 서비스 이용량 중 스트리밍 40%+다운로드 60%를 반영한 차트입니다.</p>
<button type="button" class="button_icons etc close d_close"><span class="none">닫기</span></button>
</div>
</div>
</div>
<div class="wrap_tabmenu01">
<ul>
<li class="first_child on"><a href="/chart/index.htm" class="link_tab"><span class="cntt">실시간</span></a></li>
<li><a href="/chart/rise/index.htm" class="link_tab" title="급상승 차트 - 페이지 이동"><span class="cntt">급상승</span></a></li>
<li><a href="/chart/day/index.htm" class="link_tab" title="일간 차트 - 페이지 이동"><span class="cntt">일간</span></a></li>
<li><a href="/chart/week/index.htm" class="link_tab" title="주간 차트 - 페이지 이동"><span class="cntt">주간</span></a></li>
<li class="last_child"><a href="/chart/month/index.htm" class="link_tab" title="월간 차트 - 페이지 이동"><span class="cntt">월간</span></a></li>
</ul>
</div>
<div id="real_conts">
<div class="multi_row">
<div class="calendar_prid">
<span class="yyyymmdd">
<span class="year">2018.01.23</span>
</span>
<span class="hhmm">
<span class="hour">16:00</span>
</span>
<div class="time_layer">
<button title="시간선택" class="button_icons etc arrow_d" type="button" data-control="dropdown">
<span class="none">시간선택</span>
</button>
<div class="l_popup" style="display: none;">
<div class="box_scroll">
<ul class="time_list">
<li><a href="#" class="timelist" data-time-value="2018012316"><span class="time">16:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012315"><span class="time">15:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012314"><span class="time">14:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012313"><span class="time">13:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012312"><span class="time">12:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012311"><span class="time">11:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012310"><span class="time">10:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012309"><span class="time">09:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012308"><span class="time">08:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012307"><span class="time">07:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012306"><span class="time">06:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012305"><span class="time">05:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012304"><span class="time">04:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012303"><span class="time">03:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012302"><span class="time">02:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012301"><span class="time">01:00</span></a></li>
<li><a href="#" class="timelist" data-time-value="2018012300"><span class="time">00:00</span></a></li>
</ul>
</div>
</div>
<span class="rank_update" style="display: none">순위 업데이트!</span>
</div>
</div>
<div class="top3 button_group">
<button type="button" id="d_tutorial_open" class="btn_guide"><span class="text">이용안내</span><span class="button_icons etc guide"></span></button>
<button type="button" id="chart_Refresh"><span class="text btn_chart">새로고침</span><span class="button_icons etc refresh"></span></button>
</div>
</div>
<div class="wrap_top3">
<h3 class="none">실시간 TOP100 1위부터 3위까지 순위 목록</h3>
<div class="real_graph">
<div class="real_wrap">
<div class="graph_bar">
<a href="#" class="btn_five">5분보기</a>
</div>
<div class="graph_wrap">
<span class="rank_txt">5분 차트보기</em></span>
<div class="occupancy_cont">
<div class="rank_time">
<span class="time"> <img width="101" height="13" src="http://cdnimg.melon.co.kr/resource/image/web/chart/stit_realtime02.png" alt="실시간 점유율"/>
</span>
<ul>
<li class="lank01"><a href="#"><span class="none">1위</span>
<em>40%</em>
</a></li>
<li class="lank02"><a href="#"><span>2위</span>
<em>33%</em>
</a></li>
<li class="lank03"><a href="#"><span>3위</span>
<em>27%</em>
</a></li>
</ul>
</div>
</div>
<div id="d_chart_box" class="graph_rank">
<!-- 실시간 차트 랜더링 -->
</div>
</div>
<div class="rank_cont d_songrankcont">
<ol class="d_song_list">
<li class="on">
<div class="album_img">
<img onerror="WEBPOCIMG.defaultAlbumImg(this);" width="319" height="319" src="http://cdnimg.melon.co.kr/cm/album/images/101/31/396/10131396_500.jpg/melon/resize/319/quality/80/optimize" alt="다른사람을 사랑하고 있어 - 페이지 이동"/>
</div>
<div class="rank_music">
<div class="music_info">
<div class="info_top">
<div class="chart_num">
<span class="rank_01">1</span>
<span class="none">위</span>
</div>
<div class="song_info_cont">
<div class="thumb">
<a href="javascript:melon.link.goAlbumDetail('10131396');"><img onerror="WEBPOCIMG.defaultAlbumImg(this);" width="80" height="80" src="http://cdnimg.melon.co.kr/cm/album/images/101/31/396/10131396_500.jpg/melon/resize/80/quality/80/optimize" alt="다른사람을 사랑하고 있어 - 페이지 이동"/></a>
</div>
<div class="song_info_cont2">
<div class="wrap_song_info ellipsis">
<strong>
<a title="다른사람을 사랑하고 있어 - 재생" href="javascript:melon.play.playSong('19030101','30851703');">
<span class="ellipsis">
<span class="play">재생</span>
<span class="tit">다른사람을 사랑하고 있어</span>
</span>
</a>
</strong>
</div>
<div class="wrap_atist"><a href="javascript:melon.link.goArtistDetail('514741');" title="수지 (SUZY) - 페이지 이동" class="play_artist"><span>수지 (SUZY)</span></a></div>
<div class="btn_like" >
<button class="btn_icon like"
title="다른사람을 사랑하고 있어 좋아요"
type="button" data-song-no="30851703"
data-song-menuId="19030101" style="display:none;">
<span class="odd_span">좋아요</span> <span class="cnt"><span
class="none">총건수</span>0</span>
</button>
</div>
</div>
</div>
</div>
<div class="info_btm">
<div class="info_btm">
<ul>
<li><span class="icon_info issue"></span><em class="inssue_txt">이슈</em>1위지속 <em><span>9</span>시간 이상 1위!!</em></li>
<li><span class="icon_info max"></span>24시간 내 최고 순위 <em>1위</em></li>
<li><span class="icon_info root"></span>지붕킥 <em>1번!</em></li>
<li><span class="icon_info dauily"></span>어제 누적 순위 <em>4위</em></li>
</ul>
</div>
</div>
<a href="#" class="btn_hearing" title="1위곡 누가 들었나요?">
<img src="http://cdnimg.melon.co.kr/resource/image/web/chart_4x/btn_rank.png" alt="1위곡 누가 들었나요?"/></a>
</div>
</div>
<div class="hearing_layer">
<div class="wrap">
<div class="cont">
<h3>
<span class="rank_01">1</span>
</h3>
<p class="txt_desc"><img src="http://cdnimg.melon.co.kr/resource/image/web/chart/txt_vote.gif" alt="누가 들었나요?최근 24시간 동안 스트리밍과 다운로드를 한 감상 이용자 정보입니다."/></p>
<ul>
<li class="lank01"><a href="#"><span class="none">1위</span><em>40%</em></a></li>
<li class="lank02"><a href="#"><span class="none">2위</span><em>33%</em></a></li>
<li class="lank03"><a href="#"><span class="none">3위</span><em>27%</em></a></li>
</ul>
<ul class="gender">
<li style="width:38.1%;" class="man"><strong><span>남자</span></strong>
<span class="graph_bar2"><span><em>38.1%</em></span></span>
</li>
<li style="width:61.9%;" class="woman"><strong><span>여자</span></strong>
<span class="graph_bar2"><span><em>61.9%</em></span></span>
</li>
</ul>
<ul class="age_group">
<li class="nth1"><strong><span>10대</span></strong> <span
class="graph_bar2"><span style="height:13.5%"></span></span>
</li>
<li class="nth2"><strong><span>20대</span></strong> <span
class="graph_bar2"><span style="height:51.9%"></span></span>
</li>
<li class="nth3"><strong><span>30대</span></strong> <span
class="graph_bar2"><span style="height:19.0%"></span></span>
</li>
<li class="nth4"><strong><span>40대</span></strong> <span
class="graph_bar2"><span style="height:10.5%"></span></span>
</li>
<li class="nth5"><strong><span>50대</span></strong> <span
class="graph_bar2"><span style="height:4.3%"></span></span>
</li>
<li class="nth6"><strong><span>기타</span></strong> <span
class="graph_bar2"><span style="height:1.0%"></span></span>
</li>
</ul>
<div class="count_num">
<strong class="count">이용자수</strong> <em>674,147</em>
<span class="unit">명</span>
<span class="hour">(24시간 누적)</span>
</div>
</div>
<button type="button" class="btn d_close">닫기</button>
</div>
</div>
</li>
<li >
<div class="album_img">
<img onerror="WEBPOCIMG.defaultAlbumImg(this);" width="319" height="319" src="http://cdnimg.melon.co.kr/cm/album/images/101/15/186/10115186_500.jpg/melon/resize/319/quality/80/optimize" alt="그날처럼 - 페이지 이동"/>
</div>
<div class="rank_music">
<div class="music_info">
<div class="info_top">
<div class="chart_num">
<span class="rank_02">2</span>
<span class="none">위</span>
</div>