한국일보
- 정치
- 경제
- 사회
- 국제
- 문화
- 연예
- 스포츠
- 사람
- 라이프
- 오피니언
- 구독+
"8년 만에 한국 온다"...콜드플레이, 내년 4월 4번이나 무대 선다
알림
알림설정
웹 알림 동의 (크롬브라우저만 가능)
알림
- 알림이 없습니다
\n' + ' '); } } // 최근 검색어가 없으면 } else { // 전체 삭제 버튼 비활성화 $('button[data-el="search-record-delete-all-btn-in-gnb"]').attr('disabled', true); $('dl[data-el="search-record-list-in-gnb"]').append('
'); // 컨테이너 css class toggle $('div[data-el="search-toggle-recent-word"]').addClass('no-result'); } } function onClickSearchRecord(searchText) { location.href = _searchHost + '/Search?searchText=' + encodeURIComponent(searchText); } function onClickDeleteSearchRecord(index, event) { var searchRecordCookie = Cookies.get('search-record'); var searchRecord = searchRecordCookie.split(',').reverse(); // Prevent Submit Form Tag event.preventDefault(); event.stopImmediatePropagation(); // 해당 인덱스 삭제 searchRecord.splice(Number(index), 1); if (searchRecord.reverse().join(',') !== '') { // Cookies.set('search-record', searchRecord.join(','), {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('search-record', searchRecord.join(','), {path: '/', expires: 60 * 60 * 24 * 265}); } else { Cookies.remove('search-record'); } setSearchRecord(); } /** * 검색어 전체 삭제 listener */ function setSearchRecordDeleteAllListener() { $('button[data-el="search-record-delete-all-btn-in-gnb"]').on('click', function () { Cookies.remove('search-record'); setSearchRecord(); }) } /** * 검색어 저장 on off 버튼 listener */ function setSaveSearchRecordOnOffBtnListener() { $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').on('click', function () { var flag = Cookies.get('save-search-record-flag'); if (flag === 'true' || flag === undefined) { // Cookies.set('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 켜기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 켜기'); } else { // Cookies.set('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 끄기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 끄기'); } }); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').on('click', function () { var flag = Cookies.get('save-search-record-flag'); if (flag === 'true' || flag === undefined) { // Cookies.set('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'false', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 켜기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 켜기'); } else { // Cookies.set('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('save-search-record-flag', 'true', {path: '/', expires: 60 * 60 * 24 * 265}); $('button[data-el="search-record-save-off-btn-in-record-in-gnb"]').html('검색어 저장 끄기'); $('button[data-el="search-record-save-off-btn-in-auto-in-gnb"]').html('검색어 저장 끄기'); } }) } /** * 검색어 input 리스너 세팅 */ function setSearchInputListener() { $('button[data-el="search-input-in-gnb-btn"]').off('click.search-input-in-gnb-btn').on('click.search-input-in-gnb-btn', function(){ var searchText = $(this).parent().find('input[data-el="search-input-in-gnb"]').val(); saveSearchRecord(searchText); location.href = _searchHost + "/Search?searchText=" + encodeURIComponent(searchText); }) $('input[data-el="search-input-in-gnb"]').on('keyup', function (key) { //키가 13이면 실행 (엔터는 13) var searchText = $(this).val(); if (key.keyCode == 13 && searchText !== '') { saveSearchRecord(searchText); location.href = _searchHost + "/Search?searchText=" + encodeURIComponent(searchText); } // 상단 검색에서 자동완성 막기. // if( this.dataset.auto !== 'disabled' ){ // var param = { // "query": { // "bool": { // "should": [{ // "term": { // "PHRASE_Ngram": Hangul.disassemble(key.target.value).join('') // } // }], // "minimum_should_match": 1 // } // } // }; // var relatedSearchKeywordList = ''; // $.ajax({ // url: "/Search-auto-complete", // method: "POST", // contentType: 'application/json', // data: JSON.stringify(param), // success: function (response) { // var $autoCompleteList = $('dl[data-el="auto-complete-list-in-gnb"]'); // $autoCompleteList.html(''); // $autoCompleteList.html('
'); // for (var i = 0; i < response.length; i++) { // $autoCompleteList.append('
'); // if (i === 0) { // relatedSearchKeywordList = response[i]._id; // } else { // relatedSearchKeywordList += ',' + response[i]._id; // } // } // Cookies.set('relatedSearchKeyword', relatedSearchKeywordList); // }, // fail: function (err) { // // console.log('댓글 등록 -> 댓글 등록 에러'); // } // }); // } }); } /** * 최근 검색 기록 추가 */ function saveSearchRecord(searchText) { // 빈 값 검색 기록에 검색하면 넣지 않고 검색만 한다. if ($.trim(searchText) === '') { return; } var searchSaveFlag = Cookies.get('save-search-record-flag'); // 검색어 저장이 true 이면 if (searchSaveFlag === 'true' || searchSaveFlag === undefined) { var now = new Date(); var ymd = now.getFullYear() + "." + ('0' + (now.getMonth() + 1)).slice(-2) + "." + now.getDate(); var searchRecord = Cookies.get('search-record'); // 빈 값이 아니면 if (searchRecord !== undefined) { var searchRecordList = searchRecord.split(','); if (searchRecordList.length === 10) { searchRecordList.reverse(); searchRecordList.pop(); searchRecordList.reverse(); searchRecord = searchRecordList.join(','); } searchRecord += ',' + searchText + "_splitter" + ymd; } else { searchRecord = searchText + "_splitter" + ymd; } // Cookies.set('search-record', searchRecord, {path: '/', expires: 60 * 60 * 24 * 265}); fn_setCookie('search-record', searchRecord, {path: '/', expires: 60 * 60 * 24 * 265}); setSearchRecord(); } } /** * 인기 검색어 조회 * 2021-04-08 인기검색어 노출 제거.(네이버 실시간 검색 종료) */ function setPopularKeyword() { $.ajax({ url: "/Search-popular-keyword", method: "GET", success: function (response) { // console.log('인기 검색어 조회 성공'); // console.log(response); var popularKeywordList = response; var metaKeywordList = []; // 기사 개수 var popularArticleCount = 20; // 기사 개수에 따른 분기점 var popularKeywordCount = 4; if (popularKeywordList.length > 0) { $('p[data-el="keyword-created-dt"]').html(getFormattedDate(popularKeywordList[0].createdDt, 'yyyy.mm.dd hh:mm') + ' 기준') for (var i = 0; i < popularArticleCount; i++) { var item = popularKeywordList[i]; var articleShoulder = item.articleShoulder !== undefined ? item.articleShoulder.shoulderContents : ''; if (i % popularKeywordCount === 0 && i < popularArticleCount) { // 메타에 넣을 배열 준비 metaKeywordList.push(item.topic); $('#keyword-' + (i / popularKeywordCount)).html('' + parseInt((i / popularKeywordCount) + 1) + '' + item.topic + '') $('#rank-list').append('
'); $('#hot-keyword-main-' + i).html('
\n' + '
\n' + ' ' + articleShoulder + '\n' + '
' + getArticleCutName(item) + item.articleTitle + '
\n' + ' ' + getFormattedDate(item.articleDeployDt, 'yyyy.mm.dd hh:mm') + '\n' + '
\n' + '
\n' + ' \n' + ' \n' + ' \n' + '
\n' + '
\n' + '
\n' + ' ' + item.articleFrontPanContents + '\n' + '
') } else if (i % popularKeywordCount !== 0) { $('#hot-keyword-sub-' + parseInt(i / popularKeywordCount)).append('
') } } setTimeout(function() { $('#rank-list').addClass('is-play'); }, 500); $('meta[name="news_keywords"]').attr('content', metaKeywordList.join(",")); $('.btn-open-search').click(function() { if (location.href.indexOf('/Search') > -1) { location.replace(_searchHost+'/Search?searchText=' + popularKeywordList[0].topic) } else { location.replace(_searchHost+'/Search'); } }); } }, fail: function (err) { // console.log('댓글 등록 -> 댓글 등록 에러'); } }); }
고경석 기자
- 입력
- 2024.09.19 16:35
- 수정
- 2024.09.19 16:56
- 0
- 0
0 0
4월 16·18·19·22일 경기 고양 고양종합운동장서
콜드플레이. 라이브네이션코리아 제공 ©Anna Lee
영국 록 밴드 콜드플레이가 2017년 첫 내한 이후 8년 만인 내년 4월 다시 국내 팬과 만난다고 19일 공연기획사 라이브네이션코리아가 밝혔다.
콜드플레이는 내년 4월 16·18·19·22일 경기 고양 고양종합운동장에서 총 네 차례 공연한다. 이번 공연의 공식 제목은 '라이브 네이션 프레젠츠 콜드플레이: 뮤직 오브 더 스피어스 딜리버드 바이 디에이치엘(Live Nation Presents Coldplay: Music of the Spheres Delivered By DHL)이다.
콜드플레이의 내년 공연은 해외 음악가의 내한 공연으로는 역대 최대 규모다. 고양종합운동장은 좌석만으로 4만3,000여 명을 수용할 수 있어 기존 좌석만으로 티켓을 판매해 4회 공연이 매진될 경우 17만 명 이상을 동원할 수 있다. 콜드플레이는 7년 전 월드투어 '어 헤드 풀 오브 드림스(A Head Full of Dreams)'로 처음 한국을 찾았는데 당시 서울 잠실 종합운동장 주경기장에서 두 차례 열린 첫 내한공연은 전석 매진되며 10만여 명을 동원한 바 있다. 2022년 3월 시작된 ‘Music of the Spheres’ 투어는 전 세계에서 10억 달러 이상의 티켓 매출을 기록하며 19일 현재 단일 투어로는 매출액 기준 역대 1위에 올라 있다.
'); document.write('
'); document.write('
'); }else{ for (var i = 0; i < loopTotal; i++) { // 문화 카테고리 오른쪽 배너 고정 if (vSectionCd == "CULTURE" && i == 1) { document.write('
'); document.write('
'); continue; } document.write('
'); if(id.indexOf('pc_news_endpage_low') == 0){ document.write('
'); } } $( document ).ready(function() { // 스크립트 삭제(태그 개수에 따라 위치가 잡히기 때문에 필요 없는 태그 삭제) $('.end-ad-container[data-ad="articleDivide"] script').remove(); });
콜드플레이, 21세기 가장 성공적인 밴드...2007년 첫 내한
크리스 마틴이 이끄는 4인조 밴드 콜드플레이는 2000년 데뷔 이래 9장의 정규 앨범을 포함해 현재까지 전 세계적으로 1억 장 이상의 앨범 판매를 기록했으며 압도적인 규모의 라이브 투어로 21세기 가장 성공적인 밴드 중 하나로 손꼽힌다. 데뷔 앨범과 2집 'A Rush of Blood to the Head'로 2회 연속 미국 그래미 어워즈 ‘최우수 얼터너티브 뮤직 앨범’ 부문을 수상하는 등 총 7개의 그래미 트로피를 거머쥐었고, 영국 브릿어워즈에서도 총 9차례 수상하며 밴드로서는 역대 최다 수상 기록을 세웠다.
콜드플레이. 라이브네이션코리아 제공 ©Anna Lee
'); document.write('
'); document.write('
'); }else{ for (var i = 0; i < loopTotal; i++) { // 문화 카테고리 오른쪽 배너 고정 if (vSectionCd == "CULTURE" && i == 1) { document.write('
'); document.write('
'); continue; } document.write('
'); if(id.indexOf('pc_news_endpage_low') == 0){ document.write('
'); } } $( document ).ready(function() { // 스크립트 삭제(태그 개수에 따라 위치가 잡히기 때문에 필요 없는 태그 삭제) $('.end-ad-container[data-ad="articleDivide"] script').remove(); });
2021년에는 방탄소년단(BTS)과 함께 한국어 가사를 담은 싱글 ‘My Universe’를 발표해 발매 첫 주 빌보드 싱글 차트인 '핫 100' 1위에 오르며 국내 팬들과 더욱 가까워졌다. 2022년에는 BTS 멤버 진의 솔로 싱글 ‘The Astronaut’에 작곡으로 참여해 화제를 모았다.
내년 공연에서 콜드플레이는 ‘Yellow’, ‘Fix You’, ‘Viva la Vida’ 등 대표적인 히트곡들은 물론 ‘feelslikeimfallinginlove’, ‘WE PRAY’ 등 최신 싱글까지 아우르는 세트리스트와 화려한 레이저, 폭죽, 불꽃 등 스펙터클한 무대 연출로 대규모 경기장을 꽉 채우는 스타디움 쇼를 선사할 것이라고 주최 측은 설명했다.
공연 티켓은 오는 9월 27일 오후 12시부터 공식 예매처인 인터파크 티켓에서 단독 판매된다. 이에 앞서 9월 24일 오후 12시부터 오후 4시 59분까지 아티스트 선예매가 진행되며 관련 내용은 아티스트 공식 홈페이지(coldplay.com)와 소셜 미디어를 통해 확인할 수 있다. 또한 라이브네이션코리아 홈페이지 회원은 9월 25일 오후 12시부터 오후 4시 59분까지 해당 홈페이지(www.livenation.kr)를 통해 사전 예매가 가능하다.
고경석 기자 kave@hankookilbo.com
기사 URL이 복사되었습니다.
세상을 보는 균형, 한국일보Copyright ⓒ Hankookilbo
신문 구독신청
');li.find('a').attr('href', getArticleUrl(item) + '?type=AB1&rPrev=' + 'A2024091913330003531').attr('target', '_' + item.articleLinkTargetType);li.find('div.title').text(getArticleCutName(item) + item.articleTitle);li.find('div.img-box > img').attr('src', item.repAttach.filePath);if (isMovieSectionYN == 'Y') {$('#related-article-list-video').append(li);} else {$('#related-article-list').append(li);} } } // 관련기사 호출 getRelatedList(); /** * 기사 구독 버튼 클릭 */ function onClickSubscribeArticleBtn(location) { subscribeLocation = location; // 로그인 확인 if (Cookies.get('accessToken') === undefined) { $('#sign-in-request-alert').openPopup(); return; } if ($(event.target).hasClass('on')) { $('#delete-subscription-popup').openPopup(); return; } subscribeTypeCheck(); } /** * 구독 분기 함수 */ function subscribeTypeCheck(){ //if(subscribeLocation == 'JPAGE' || subscribeLocation == 'TAG'){ if(subscribeLocation == 'JPAGE' || subscribeLocation == 'HASHTAG'){ subscribeArticleNew(subscribeLocation); }else{ subscribeArticle(); } } /** * 기사 구독 */ function subscribeArticle() { var usersSubscriptionPart = ''; var usersSubscriptionValue = ''; var seriesType = ''; var subContentType = ""; switch (usersSubscriptionPart){ case 'SeriesColumn': seriesType = 'NEWS_SERIES'; subContentType = '칼럼'; break; case 'Planning': seriesType = 'NEWS_PLANNING'; subContentType = '연재'; break; case 'Series': seriesType = 'NEWS_PLANNING'; subContentType = '연재'; break; case 'NameColumn': seriesType = 'NEWS_SERIES'; subContentType = '칼럼'; break; } $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: seriesType, usersSubscriptionValue: usersSubscriptionValue }) }).success(function (response) { var successYn = response; if (successYn) { if (successYn === 'Y') { fn_setGoogleAnalyticsUserDetailsUpdate(""); var sub_content = ''; if ("btn-subsc" == $('.btn-subsc').attr('class')) { //구독 중 fn_googleAnalyticsSubscribe(sub_content, subContentType); } else { //구독 취소 fn_googleAnalyticsUnsubscribe(sub_content, subContentType); } $('.btn-subsc').toggleClass('on'); } else if(successYn === 'F'){ $('#subscribe-valid-popup').openPopup(); $('.btn-subsc').remove(); } else { $('.btn-subsc').removeClass('on'); } } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); } /** * 기자 구독 */ function subscribeArticleNew(location) { // 기사 구독 api를 쏜다 -> 중복체크는 controller에서 한다. if(location == 'JPAGE'){ $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: location, usersSubscriptionValue: '973974e2-c21a-48dc-b1ee-b591e541e93a' }) }).success(function (response) { var successYn = response; if (successYn == 'Y') { // css를 바꾼다 // console.log('기사 구독 -> 성공'); fn_setGoogleAnalyticsUserDetailsUpdate(""); $('.subsc-btn.jpage').toggleClass('on'); if ($('.subsc-btn.jpage').hasClass('on')) { $('.subsc-btn.jpage').siblings('.add-pop').show(); //구독 중 fn_googleAnalyticsSubscribe('고경석', '기자'); } else { $('.subsc-btn.jpage').siblings('.cancel-pop').show(); //구독 취소 fn_googleAnalyticsUnsubscribe('고경석', '기자'); } } else if(successYn === 'F') { $('#subscribe-valid-popup').openPopup(); $('.subsc-btn.jpage').remove(); } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); // }else if(location == 'TAG'){ }else if(location == 'HASHTAG'){ $.ajax({ url: '/my/subscription', method: "POST", contentType: 'application/json', data: JSON.stringify({ usersSubscriptionPart: location, usersSubscriptionValue: '' }) }).success(function (response) { var successYn = response; if (successYn === 'Y') { // css를 바꾼다 // console.log('기사 구독 -> 성공'); $('.subsc-btn.tag').toggleClass('on'); if ($('.subsc-btn.tag').hasClass('on')) { $('.subsc-btn.tag').siblings('.add-pop').show(); } else { $('.subsc-btn.tag').siblings('.cancel-pop').show(); } } else if(successYn === 'F') { $('#subscribe-valid-popup').openPopup(); $('.subsc-btn.tag').remove(); } else { // console.log('기사 구독 -> 실패') } }).fail(function (error) { // }); } } /** * 기사 저장 버튼 클릭 */ function onClickSaveArticleBtn(location) { // 로그인 확인 if (Cookies.get('accessToken') === undefined) { $('#sign-in-request-alert').openPopup(); return; } // 기사 저장 api를 쏜다 -> 중복체크는 controller에서 한다. $.ajax({ url: '/article/activity', method: 'POST', contentType: 'application/json', data: JSON.stringify({ articleId: 'A2024091913330003531', activityType: 'Save' }), success: function (response) { // console.log('기사 저장 -> 성공'); var flag = response; if (flag) { // 기사 저장 css 토글 $('.btn-bookmark').toggleClass('on'); $('.icon-toolbox-bookmark').toggleClass('on'); // on이면 추가 popup off면 제거 popup if ($('.btn-bookmark').hasClass('on')) { setGoogleAnalyticsArticleSave(); if (location === 'top') { $('#top-save-article-popup').show(); } else { $('#bottom-save-article-popup').show(); } } else { if (location === 'top') { $('#top-delete-article-popup').show(); } else { $('#bottom-delete-article-popup').show(); } } // css를 바꾼다 } else { // console.log('기사 저장 -> 실패') } toggleAnimation('bottom-save-article-btn'); }, fail: function () { // console.log('기사 저장 -> 에러') } }) } function setGoogleAnalyticsArticleSave() { var headline = $('meta[name="headline"]').attr('content'); var content_category = $('meta[name="content_category"]').attr('content'); var content_subcategory = $('meta[name="content_subcategory"]').attr('content'); var article_type = $('meta[name="article_type"]' ).attr('content'); var article_length = $('meta[name="article_length"]' ).attr('content'); if (Cookies.get('accessToken') !== undefined) { window.dataLayer = window.dataLayer || []; $.ajax({ url: '/google-analytics/user-details-decrypt', type: 'GET', contentType: 'application/json', success: function (data) { dataLayer.push({ 'event': 'save', 'user_id': data.user_id, 'gender': data.gender, 'yob': data.yob, 'headline': headline, 'content_category': content_category, 'content_subcategory': content_subcategory, 'article_type': article_type, 'article_length': article_length, }); }, error: function () { } }); } } /** * 팝업 리스너들.. 외부 클릭시 숨긴다. */ var bottomSaveArticlePopup = $('#bottom-save-article-popup'); var bottomDeleteArticlePopup = $('#bottom-delete-article-popup'); var bottomSubscriptionSavePopup = $('#bottom-subscription-save-popup'); var bottomSubscriptionDeletePopup = $('#bottom-subscription-delete-popup'); $(document).mouseup(function (e) { // if the target of the click isn't the container nor a descendant of the container if (!bottomSaveArticlePopup.is(e.target) && bottomSaveArticlePopup.has(e.target).length === 0) { bottomSaveArticlePopup.hide(); bottomDeleteArticlePopup.hide(); bottomSubscriptionSavePopup.hide(); bottomSubscriptionDeletePopup.hide(); } }); // 본문 중간 광고 하단 공백 제거. $(document).ready(function(){ $('.editor-p').each(function(i, dom){ $.each(dom.childNodes, function(j, node){ if(node.nodeType === 1 && String(node.tagName).toUpperCase() === 'BR' && (dom.dataset.breakType === undefined || dom.dataset.breakType !== 'text') ){ dom.dataset.breakType = 'break'; }else{ dom.dataset.breakType = 'text'; } }) if(dom.dataset.breakType === 'break' && $(dom).prev().hasClass('end-ad-container')){ $(dom).remove(); } }) $("button[name='hashtags']").on("click", function () { var tag = this.id var tagId = this.value var url ="/tag/info/"+tagId+'/'+tag+'?page=1'; location.href = url; }); })
당신이 관심 있을 만한 이슈
중복 선택 불가 안내
이미 공감 표현을 선택하신
기사입니다. 변경을 원하시면 취소
후 다시 선택해주세요.