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

2025 담양 대나무축제, 초록 향기에 물들다

by wjdflgkrl 2025. 4. 9.
반응형

한국관광공사 포토코리아-라이브스튜디오

2025 담양 대나무축제, 초록 향기에 물들다

맑은 대나무 숲 사이로 불어오는 바람, 죽녹원에 울려 퍼지는 음악과 웃음소리. 자연과 문화, 전통이 어우러진 담양 대나무축제가 2025년 5월에 개최됩니다. 온 가족이 함께 즐길 수 있는 체험형 축제로, 생생한 정보 지금 확인해보세요.


목차


🎍 축제 개요

  • 기간: 2025년 5월 2일(금) ~ 5월 6일(화)
  • 장소: 전라남도 담양군 담양읍 죽녹원로 119
  • 입장료: 죽녹원 3,000원 (전액 지역 상품권으로 환급)
  • 우대 대상: 경로우대, 장애인, 미취학아동, 담양군민 무료
  • 운영 시간: 오전 9시 ~ 오후 9시 (야간 개장 포함)

🎤 주요 프로그램

  • 문화예술행사: 개막공연, 드론쇼, 죽신제, 디제잉 페스타, 불꽃공연, 지역공연, 폐막행사
  • 전국 경연대회: 그림그리기 대회, 끼 페스티벌, 트롯가요제, 드론 스포츠 경진대회
담양 대나무축제 전경

🌿 체험 프로그램

  • 대나무 체험: 대나무 뗏목 타기, 카누 체험, 물총 만들기, 연 만들기, 볼 던지기
  • 이벤트 활동: 야간 경관, 운수대통 이벤트, 친환경 플로깅, 유퀴즈 챌린지
  • 특산물 판매: 농산물 직거래장터, 향토 음식존, 베이킹 체험, 전통주 하이볼

📌 방문 정보

  • 주소: 전라남도 담양군 담양읍 죽녹원로 119
  • 문의처: 061-380-3152 (담양대나무축제위원회)

🗺️ 주변 관광지

  • 죽녹원: 푸른 대나무가 울창한 산책 명소, 사진 촬영 인기 장소
  • 관방제림: 300년 넘은 고목이 만든 천연기념물 숲길
  • 메타세쿼이아길: 사계절이 아름다운 산책로, 인생샷 필수 코스

⚠ 방문 시 유의사항

  • 죽녹원 입장료는 축제 기간 동안 지역 상품권으로 환급됩니다.
  • 축제 기간 동안 야간 개장이 있으며, 오후 9시까지 입장 가능합니다.
  • 대중교통 이용을 추천드리며, 자가용 이용 시 주차 혼잡을 고려해주세요.
  • 반려동물 동반 시 목줄 착용은 필수입니다.

반응형

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