ViewTransition:skipTransition() 方法

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

实验性: 这是一项实验性技术
在将其用于生产之前,请仔细检查浏览器兼容性表格

ViewTransition 接口的 skipTransition() 方法跳过视图过渡的动画部分,但不跳过更新 DOM 的 document.startViewTransition() 回调函数。

语法

js
skipTransition()

参数

返回值

undefined

示例

js
// 开始新的视图过渡
const transition = document.startViewTransition(() => displayNewImage());

// 跳过视图过渡动画,仅更新 DOM
transition.skipTransition();

规范

Specification
CSS View Transitions Module Level 1
# dom-viewtransition-skiptransition

浏览器兼容性

BCD tables only load in the browser

参见