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

자유롭게 떠나는 국내 여행, 인터파크 자유여행 패키지 추천

by wjdflgkrl 2025. 3. 26.
반응형

자유롭게 떠나는 국내 여행, 인터파크 자유여행 패키지 추천

제주도 항공+호텔 자유여행 3박 4일

여행 기간: 3박 4일
출발지: 김포공항
교통편: 왕복 항공권 포함
숙박: 제주 시내 호텔 3박

포함 사항:

  • 왕복 항공권
  • 호텔 숙박

선택 옵션:

  • 렌터카 추가 가능
  • 조식 포함 가능

4월 국내여행지 중 단연 인기 있는 제주 자유여행! 인터파크 여행에서는 항공과 숙박이 포함된 실속형 자유여행 패키지를 통해 원하는 일정을 자유롭게 구성할 수 있어 여행 준비가 간편합니다.


부산 해운대 자유여행 2박 3일

여행 기간: 2박 3일
출발지: 서울역
교통편: KTX 왕복 포함
숙박: 해운대 인근 호텔

포함 사항:

  • 왕복 KTX 티켓
  • 호텔 숙박

선택 옵션:

  • 조식 포함 가능
  • 해운대 시티투어 버스 할인권

부산 자유여행 패키지는 도심과 바다를 동시에 즐기고 싶은 분들에게 추천! 인터파크 투어에서 제공하는 패키지는 KTX와 호텔이 포함되어 있어 교통과 숙박 고민 없이 부산 2박 3일 여행을 알차게 즐길 수 있습니다.


강원도 평창 자유여행 2박 3일

여행 기간: 2박 3일
출발지: 서울(자가 이동)
교통편: 자가용 또는 고속버스 개별 이동
숙박: 평창 리조트 2박

포함 사항:

  • 리조트 숙박

선택 옵션:

  • 조식 포함 가능
  • 스키 장비 렌탈 할인권 (겨울 시즌 한정)

평창 자유여행은 자연 속 힐링과 사계절 액티비티를 모두 즐길 수 있는 국내 자유여행 패키지입니다. 가족, 연인, 친구와 함께 인터파크 투어에서 제공하는 리조트 숙박과 함께 여유로운 여행을 즐겨보세요.


반응형

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