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

2025 제39회 이천도자기축제 프로그램 안내

by wjdflgkrl 2025. 4. 28.
반응형

도자기 하나로 봄의 감성을 가득 담아낸 '이천도자기축제'가 2025년, 제39회를 맞아 더 화려하게 돌아옵니다! 🎉 240여 개의 공방이 한자리에 모여 전시·판매부터 체험과 공연까지, 가족과 연인 모두가 즐길 수 있는 프로그램이 가득합니다. 지금 이천으로 떠날 준비 되셨나요?

 

 

 

 

축제 개요


2025년 제39회 이천도자기축제는 4월 25일(금)부터 5월 6일(화)까지 12일간 개최되며, 오전 10시부터 오후 6시까지 운영됩니다. 장소는 이천 도자예술마을 내 회랑마을~사부작2마을 일대 약 500m 거리에서 펼쳐지며, 240여 개의 도예공방이 참여합니다.



도자기 전시·판매 행사


축제의 하이라이트 중 하나는 도자기 전시 및 할인 판매입니다. 약 50% 할인된 가격으로 고품질의 도자기를 구매할 수 있는 절호의 기회! 이천 각 마을을 대표하는 특색 있는 제품이 준비되어 있습니다.


프로그램명 운영 기간 주요 내용
도자기 판매 4.25 ~ 5.6 240여 공방, ~50% 세일
생활도자 특별전 4.25 ~ 5.6 반려동물 및 멸종위기 동물 테마


다채로운 테마 전시 프로그램


올해의 전시 주제는 '신묘한 동물원전'입니다. 자연과 동물이 조화를 이루는 작품들이 전시되며, 도자 예술을 통해 생태 보존의 메시지를 전달합니다.

  • 명장전: 이천 도자의 위상을 담은 작품 전시
  • 현대작가 공모전: 청년 작가의 창의적인 동물 테마 작품
  • 특별전: 반려동물, 멸종위기 동물 주제 도자기
  • 해외 교류전: 미국·일본·중국·프랑스 등 유네스코 창의도시 작가 참여
  • 세라믹기술원 전: 기술과 예술의 만남, 세라믹 기술 성과물 전시


창의적 체험과 공연이 함께하는 축제


물레 체험부터 전통놀이까지, 남녀노소 누구나 참여할 수 있는 체험 부스도 축제장 곳곳에 운영됩니다. 더불어, 다양한 공연과 퍼포먼스가 매일 펼쳐져 도자기 축제의 흥을 더합니다.



이천으로 가는 길


축제 장소는 경기도 이천시 부악로 40, 이천도자예술마을입니다. 자가용 이용 시 이천 시청 인근으로 내비게이션을 설정하면 편리하게 접근할 수 있습니다. 대중교통 이용 시 셔틀버스 운영 여부는 홈페이지를 참고해 주세요.



Q&A



Q1. 축제 입장료는 있나요?
A1. 입장료는 무료이며, 일부 체험이나 구매는 유료입니다.


Q2. 반려동물 동반 가능한가요?
A2. 축제장은 야외로 구성되어 있어 반려동물 출입이 가능하나, 각 부스별 출입 제한이 있을 수 있습니다.


Q3. 주차장은 넉넉한가요?
A3. 행사장 인근에 임시 주차장이 마련되어 있습니다.


Q4. 구매한 도자기 배송 가능한가요?
A4. 대부분 공방에서 택배 서비스를 지원하고 있습니다.


Q5. 비 오는 날에도 축제가 열리나요?
A5. 대부분의 부스가 천막 혹은 실내로 구성되어 있어 우천 시에도 운영됩니다.



마무리하며


2025 제39회 이천도자기축제는 도자기라는 전통 문화의 아름다움과 현대적 감성을 더해 모두의 일상에 예술을 선물합니다. 🎨 남녀노소 누구나 즐길 수 있는 이천도자기축제에서 특별한 추억을 만들어보세요!


놓치기 아까운 12일간의 문화축제, 지금 바로 일정 확인하고 방문 계획 세워보세요!


 

 

 

 

반응형

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