The SVGAnimationElement interface is the base interface for all
the animation element interfaces: web.svg.SVGAnimateElement
,
web.deprecated.SVGAnimateColorElement
, web.svg.SVGAnimateMotionElement
web.svg.SVGAnimateTransformElement
.
The SVGAnimationElement interface is the base interface for all the animation element interfaces: `web.svg.SVGAnimateElement`, `web.deprecated.SVGAnimateColorElement`, `web.svg.SVGAnimateMotionElement` `web.svg.SVGAnimateTransformElement`.
(begin-element this & args)
Method.
Creates a begin instance time for the current time. The new instance is added to the begin instance times list. The behavior of this is equivalent to beginElementAt(0).
Method. Creates a begin instance time for the current time. The new instance is added to the begin instance times list. The behavior of this is equivalent to beginElementAt(0).
(begin-element-at this & args)
Method.
Creates a begin instance time for the current time plus the offset. The new instance time is added to the begin instance list.
Method. Creates a begin instance time for the current time plus the offset. The new instance time is added to the begin instance list.
(end-element this & args)
Method.
Creates an end instance time for the current time. The new instance is added to the end instance times list. The behavior of this is equivalent to endElementAt(0).
Method. Creates an end instance time for the current time. The new instance is added to the end instance times list. The behavior of this is equivalent to endElementAt(0).
(end-element-at this & args)
Method.
Creates a end instance time for the current time plus the specified The new instance time is added to the end instance times list.
Method. Creates a end instance time for the current time plus the specified The new instance time is added to the end instance times list.
(get-current-time this & args)
Method.
Returns a float representing the current time in seconds relative time zero for the given time container.
Method. Returns a float representing the current time in seconds relative time zero for the given time container.
(get-simple-duration this & args)
Method.
Returns a float representing the number of seconds for the simple for this animation. If the simple duration is undefined (e.g., end time is indefinite), then a DOMException with code NOT_SUPPORTED_ERR raised.
Method. Returns a float representing the number of seconds for the simple for this animation. If the simple duration is undefined (e.g., end time is indefinite), then a DOMException with code NOT_SUPPORTED_ERR raised.
(get-start-time this & args)
Method.
Returns a float representing the begin time, in seconds, for animation element's current interval, if it exists, regardless whether the interval has begun yet. If there is no current interval, a DOMException with code INVALID_STATE_ERR is thrown.
Method. Returns a float representing the begin time, in seconds, for animation element's current interval, if it exists, regardless whether the interval has begun yet. If there is no current interval, a DOMException with code INVALID_STATE_ERR is thrown.
(onbegin this)
Property.
[Experimental]
The SVGAnimationElement.onbegin property refers to the event for the beginEvent.
var beginEventHandler = someElement.onbegin;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onbegin
Property. [Experimental] The SVGAnimationElement.onbegin property refers to the event for the beginEvent. `var beginEventHandler = someElement.onbegin;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onbegin`
(onend this)
Property.
[Experimental]
The SVGAnimationElement.onend property refers to the event handler the endEvent.
var endEventHandler = someElement.onend;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onend
Property. [Experimental] The SVGAnimationElement.onend property refers to the event handler the endEvent. `var endEventHandler = someElement.onend;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onend`
(onrepeat this)
Property.
[Experimental]
The SVGAnimationElement.onrepeat property refers to the event for the repeatEvent.
var repeatEventHandler = someElement.onrepeat;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onrepeat
Property. [Experimental] The SVGAnimationElement.onrepeat property refers to the event for the repeatEvent. `var repeatEventHandler = someElement.onrepeat;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onrepeat`
(set-onbegin! this val)
Property.
[Experimental]
The SVGAnimationElement.onbegin property refers to the event for the beginEvent.
var beginEventHandler = someElement.onbegin;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onbegin
Property. [Experimental] The SVGAnimationElement.onbegin property refers to the event for the beginEvent. `var beginEventHandler = someElement.onbegin;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onbegin`
(set-onend! this val)
Property.
[Experimental]
The SVGAnimationElement.onend property refers to the event handler the endEvent.
var endEventHandler = someElement.onend;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onend
Property. [Experimental] The SVGAnimationElement.onend property refers to the event handler the endEvent. `var endEventHandler = someElement.onend;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onend`
(set-onrepeat! this val)
Property.
[Experimental]
The SVGAnimationElement.onrepeat property refers to the event for the repeatEvent.
var repeatEventHandler = someElement.onrepeat;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onrepeat
Property. [Experimental] The SVGAnimationElement.onrepeat property refers to the event for the repeatEvent. `var repeatEventHandler = someElement.onrepeat;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/onrepeat`
(target-element this)
Property.
[Read Only]
The SVGAnimationElement.targetElement property refers to the which is being animated. If no target element is being animated example, because the href attribute specifies an unknown element), value returned is null.
var targetElement = someElement.targetElement;
See also: https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/targetElement
Property. [Read Only] The SVGAnimationElement.targetElement property refers to the which is being animated. If no target element is being animated example, because the href attribute specifies an unknown element), value returned is null. `var targetElement = someElement.targetElement;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement/targetElement`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close