web api instance method
SVGAnimationElement: beginElementAt() method
The SVGAnimationElement method beginElementAt() creates a begin instance time for the current time plus the specified offset. The new instance time is added to the begin instance times list.
Syntax
beginElementAt(offset)
Parameters
offset- : A float representing the offset from the current document time, in seconds, at which to begin the element.
Return value
None
Examples
This example demonstrates how to use beginElementAt() to start an animation element after a delay of 2 seconds:
const animationElement = document.querySelector("animate");
animationElement.beginElementAt(2);
console.log("Animation will start after a 2-second delay.");
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.