본문 바로가기
카테고리 없음

전국에서 즐기는 정월대보름 행사 BEST 5

by wjdflgkrl 2025. 1. 25.
반응형

전국에서 즐기는 정월대보름 행사 BEST 5

정월대보름 행사

전국 곳곳에서 열리는 정월대보름 행사 추천! 달집태우기, 쥐불놀이 등 다양한 체험과 함께 전통의 멋을 느껴보세요.

전국에서 즐기는 정월대보름 행사 BEST 5

1. 서울: 한강 달집태우기 축제

서울 한강에서는 매년 정월대보름을 맞아 달집태우기 행사가 열립니다. 대형 달집이 타오르는 장관은 물론, 부럼 깨기와 오곡밥 나눔 같은 체험 프로그램도 진행됩니다.

2. 전주: 전통문화 체험 대보름 축제

전주에서는 한옥마을과 연계된 정월대보름 행사가 열립니다. 쥐불놀이, 민속놀이 등 전통 체험과 함께 전통 나물 음식도 맛볼 수 있어 인기가 높습니다.

3. 부산: 달맞이 축제

부산 해운대 달맞이 고개에서는 매년 달맞이 축제가 열립니다. 달을 보며 소원을 비는 전통 행사와 함께 아름다운 해안 경치를 즐길 수 있어 많은 사람들이 찾습니다.

4. 강릉: 정월대보름 민속놀이 축제

강릉에서는 매년 지역 주민들이 참여하는 민속놀이 축제가 열립니다. 대형 달집태우기와 함께 풍년을 기원하는 다양한 전통 놀이를 체험할 수 있습니다.

5. 제주: 불의 축제와 대보름 행사

제주에서는 정월대보름을 맞아 불의 축제와 함께 대보름 행사가 진행됩니다. 초가집 모형 태우기, 전통 음식 체험 등 독특한 프로그램이 포함되어 있습니다.

반응형

/** * @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};