--- title: Animation.id slug: Web/API/Animation/id tags: - 动画 translation_of: Web/API/Animation/id ---
{{ SeeCompatTable() }}{{ APIRef("Web Animations API") }}
Web Animations API 的 Animation
.id
属性可返回或设置用于识别某个动画的唯一标识.
animation.id
// 获取动画的 id var animationsId = animation.id; // 设置动画的 id animation.id = "newId";
当该动画已被分配 id, 返回一个 {{domxref("DOMString")}}, 当该动画未被分配 id 则返回 null.
在 Follow the White Rabbit example 这个例子里, 你可以像下面的方式一样,为 rabbitDownAnimation
分配一个 id:
rabbitDownAnimation.effect.id = "rabbitGo";
规范 | 状态 | 说明 |
---|---|---|
{{SpecName('Web Animations', '#dom-animation-id', 'Animation.id' )}} | {{Spec2('Web Animations')}} | Editor's draft. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | {{CompatChrome(39.0)}} | {{CompatGeckoDesktop(48)}} | {{CompatNo}} | {{CompatNo}} | {{CompatNo}} |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}} | {{CompatGeckoDesktop(48)}} | {{CompatNo}} | {{CompatNo}} | {{CompatNo}} |