본문 바로가기
이모저모

롯데월드타워 일루미네이션, 빛으로 물든 서울 야경

by wjdflgkrl 2024. 12. 27.
반응형

서울 연말 명소 롯데월드타워 일루미네이션! 화려한 조명과 함께 즐길 수 있는 특별한 순간을 소개합니다. 빠르게 방문 계획을 세우려면 아래 버튼에서 확인하세요.

 

🌟 롯데월드타워 일루미네이션의 매력

롯데월드타워는 123층 높이의 초고층 빌딩으로, 서울의 밤을 빛내는 환상적인 조명으로 유명합니다. 매년 겨울, 타워 외벽과 주변 공간을 활용한 조명 쇼는 국내외 관광객들에게 큰 사랑을 받고 있습니다.

  • 조명 테마: 크리스마스와 연말 분위기를 더해주는 다양한 색상과 패턴
  • 인기 포인트: 서울 전역에서 보이는 타워의 아름다운 야경
  • 꿀팁: 밤 8시 이후 방문하면 더 어두워진 하늘과 함께 완벽한 조화를 느낄 수 있습니다.

🎶 일루미네이션 쇼 & 음악

조명뿐 아니라 음악과 함께하는 일루미네이션 쇼는 롯데월드타워만의 특별한 즐길 거리입니다. 30분 간격으로 펼쳐지는 음악과 조명의 조화는 마치 한 편의 영화 같은 감동을 선사합니다.

  • 쇼 타임: 저녁 6시부터 매 시간 정각과 30분에 진행
  • 추천 음악: 크리스마스 캐럴과 유명 팝송으로 연말 분위기 물씬

🛍 주변 즐길 거리

롯데월드타워와 주변 지역에서는 일루미네이션 외에도 다양한 즐길 거리를 만날 수 있습니다.

  • 서울 스카이: 118층에서 내려다보는 환상적인 서울 야경
  • 롯데월드몰: 다양한 맛집과 쇼핑 스팟
  • 한강 산책로: 타워 주변의 아름다운 한강 뷰

📸 인생 사진 명소

롯데월드타워 일루미네이션은 사진 찍기에도 완벽한 장소입니다.

  • 추천 스팟: 석촌호수 주변, 롯데월드몰 앞 광장
  • 팁: 삼각대와 야간 모드를 활용하면 더 선명한 사진을 찍을 수 있습니다.
반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};