Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. Web API
  3. Document
  4. startViewTransition()

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

Document: startViewTransition() 메서드

Baseline 2025 *
Newly available

Since ⁨October 2025⁩, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.

* Some parts of this feature may have varying levels of support.

Experimental:이 기능은실험적인 기능입니다.
프로덕션 환경에서 사용하기 전에브라우저 호환성 표를 주의 깊게 확인하세요.

View Transitions APIstartViewTransition() 메서드는 새로운 뷰 전환을 시작하고 이를 나타내는ViewTransition 객체를 반환합니다.

startViewTransition()이 호출되면뷰 전환 과정에 설명된 대로 일련의 단계를 따릅니다.

구문

js
startViewTransition(callback)

매개변수

callback

일반적으로 뷰 전환 과정 중에 DOM을 업데이트하기 위해 호출되는 콜백 함수로,Promise를 반환합니다. 콜백은 API가 현재 페이지의 스크린샷을 찍으면 호출됩니다. 콜백에 의해 반환된 프로미스가 충족되면 다음 프레임에서 뷰 전환을 시작합니다. 콜백에 의해 반환된 프로미스가 거부되면 전환이 중단됩니다.

반환 값

ViewTransition 객체 인스턴스입니다.

예제

기본 사용법

기본 뷰 전환 SPA 데모에서updateView() 함수는 View Transitions API를 지원하는 브라우저와 지원하지 않는 브라우저 모두 처리합니다. 지원 브라우저에서는 반환 값에 대한 걱정없이startViewTransition()을 호출하여 뷰 전환 과정을 설정합니다.

js
function updateView(event) {  // 이벤트가 <a> 태그에서 실행되는지, <img> 태그에서 실행하는지에 따라 차이를 처리합니다.  let targetIdentifier;  if (event.target.firstChild === null) {    targetIdentifier = event.target;  } else {    targetIdentifier = event.target.firstChild;  }  const displayNewImage = () => {    const mainSrc = `${targetIdentifier.src.split("_th.jpg")[0]}.jpg`;    galleryImg.src = mainSrc;    galleryCaption.textContent = targetIdentifier.alt;  };  // 뷰 전환을 지원하지 않는 브라우저를 위한 폴백입니다.  if (!document.startViewTransition) {    displayNewImage();    return;  }  // 뷰 전환을 사용합니다.  const transition = document.startViewTransition(() => displayNewImage());}

명세서

Specification
CSS View Transitions Module Level 1
# dom-document-startviewtransition
CSS View Transitions Module Level 2
# dom-document-startviewtransition

브라우저 호환성

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp