Animation.id
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2020.
Web Animations API 的 Animation.id
属性可返回或设置用于识别某个动画的唯一标识。
获取与设置 animation.id
js
// 获取动画的 id
var animationsId = animation.id;
// 设置动画的 id
animation.id = "newId";
返回值
当该动画已被分配 id,返回一个 DOMString
, 当该动画未被分配 id 则返回 null.
示例
在 Follow the White Rabbit example 这个例子里,你可以像下面的方式一样,为 rabbitDownAnimation
分配一个 id:
js
rabbitDownAnimation.effect.id = "rabbitGo";
规范
Specification |
---|
Web Animations # dom-animation-id |
浏览器兼容性
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
id |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.