这是
实验性技术
检查
浏览器兼容性表格
要小心谨慎在生产中使用这之前。
endDelay
特性为
EffectTiming
dictionary (part of the
Web 动画 API
) indicates the number of milliseconds to delay after the active period of an animation sequence. The animation's
end time
—the time at which an iteration is considered to have finished—is the time at which the animation finishes an iteration (its initial delay,
AnimationEffectTimingReadOnly.delay
, plus its duration,
duration
, plus its end delay.
This is useful for sequencing animations based on the end time of another animation; note, however, that many of the sequence effectst that will benefit most from this property have not been defined in the specification yet. For now, its main purpose is to represent the value of the
SVG
min
属性。
Element.animate()
,
KeyframeEffectReadOnly()
,和
KeyframeEffect()
all accept an object of timing properties including
endDelay.
值
endDelay
corresponds directly to
AnimationEffectTimingReadOnly.endDelay
in
timing
objects returned by
AnimationEffectReadOnly
,
KeyframeEffectReadOnly
,和
KeyframeEffect
.
var timingProperties = {
endDelay: delayInMilliseconds
}
timingProperties.endDelay = delayInMilliseconds;
A number representing the end delay, specified in milliseconds. The default value is 0.
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web 动画
The definition of 'endDelay' in that specification. |
工作草案 | 编者草案。 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
endDelay
|
Chrome 52 | Edge 79 | Firefox 63 | IE No | Opera Yes | Safari No | WebView Android 52 | Chrome Android 52 | Firefox Android 63 | Opera Android No | Safari iOS No | Samsung Internet Android Yes |
完整支持
不支持
实验。期望将来行为有所改变。
Element.animate()
,
KeyframeEffectReadOnly()
,和
KeyframeEffect()
all accept an object of timing properties including this one.
AnimationEffectTimingReadOnly
(which is the
timing
object for
AnimationEffectReadOnly
,
KeyframeEffectReadOnly
,和
KeyframeEffect
).