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

서울 뷰티플렉스 페스티벌 2025 - K-뷰티의 중심에서 만나는 뷰티 트렌드

by wjdflgkrl 2025. 5. 6.
반응형
서울 뷰티플렉스 페스티벌 2025 - K-뷰티의 중심에서 만나는 뷰티 트렌드

목차

- 서울 뷰티플렉스 페스티벌 개요
- 핵심 콘텐츠: 전시 & 콘서트
- 참여 팁과 관람 포인트
- Q&A
- 관련 태그

서울 뷰티플렉스 페스티벌 개요

서울 뷰티플렉스 페스티벌 2025는 K-뷰티, 패션, 콘텐츠를 아우르는 복합 뷰티 박람회입니다. 5월 10일(금)부터 12일(일)까지 서울 코엑스에서 개최되며, 뷰티 산업의 최신 트렌드부터 K-콘텐츠 콘서트까지 즐길 수 있는 국내 최대 규모의 뷰티 페스티벌입니다.

이번 행사는 "Beauty, Beyond K"를 주제로 K-뷰티가 글로벌 트렌드로 확장되는 흐름을 보여주며, 다양한 브랜드와 인플루언서, 셀럽이 함께 참여해 현장 분위기를 뜨겁게 달굴 예정입니다.

핵심 콘텐츠: 전시 & 콘서트

서울 뷰티플렉스 페스티벌의 주요 프로그램은 두 가지로 나눌 수 있습니다: 1) 뷰티 & 패션 전시2) K-콘텐츠 콘서트.

1. 뷰티 & 패션 전시존
- 국내외 뷰티 브랜드 150여 개 참가
- 신제품 체험 부스 및 메이크업 데모
- 패션 브랜드 팝업 쇼룸 운영

2. K-콘텐츠 콘서트
- 인기 아이돌과 크리에이터 콘서트
- 팬미팅, 포토존, 케이팝 영상 상영관
- K-드라마 의상 전시

공식 사이트에서 프로그램 확인하기

참여 팁과 관람 포인트

뷰티플렉스 페스티벌을 더욱 알차게 즐기기 위한 팁을 소개합니다.

방문 팁:

  • 사전 온라인 등록 시 무료입장 또는 할인 적용
  • 뷰티 브랜드별 한정판 굿즈체험 샘플 놓치지 않기
  • 인플루언서 세션은 미리 타임테이블 확인 필요
추천 관람객: 뷰티에 관심 많은 2030 여성, 패션 및 콘텐츠 팬, 글로벌 K-트렌드에 관심 있는 외국인 관람객

Q&A

Q1: 입장료는 얼마인가요?

A1: 사전 등록 시 무료, 현장 등록 시 일반 입장권 10,000원입니다.

Q2: 화장품 샘플도 받을 수 있나요?

A2: 대부분의 브랜드 부스에서 신제품 체험과 함께 샘플을 제공합니다.

Q3: 콘서트는 유료인가요?

A3: 메인 콘서트 일부는 별도 유료 좌석이 있으며, 무료 이벤트 존도 운영됩니다.

관련 태그

#뷰티플렉스 #K뷰티페스티벌 #서울코엑스행사 #패션박람회 #콘서트페스티벌 #케이콘텐츠 #뷰티이벤트 #2025서울축제

반응형

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