A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/en-US/docs/Web/API/SVGAnimatedNumberList/baseVal below:

SVGAnimatedNumberList: baseVal property - Web APIs

SVGAnimatedNumberList: baseVal property

Baseline Widely available

The baseVal read-only property of the SVGAnimatedNumberList interface represents the base (non-animated) value of an animatable attribute that accepts a list of <number> values.

This property reflects the viewBox attribute of the <svg> element, the values attribute of the feColorMatrix element and the points attribute of the <rect>, <polygon>, or <polyline> element as a readonly SVGNumberList, providing access to a static list of points defined by the points attribute.

Value

An SVGNumberList object representing the base value of the attribute. The list contains one or more numbers corresponding to the individual number values specified in the attribute.

Examples
const rect = document.querySelector("rect");

// Set the animatable 'points' attribute with number values
rect.setAttribute("points", "10,10 20,10 20,20 10,20");

// Access the SVGAnimatedNumberList object
const points = rect.points;

// Modify the base value
points.baseVal = [10, 15, 25, 30];

// Verify the reflected attribute value
console.log(rect.getAttribute("points")); // Output: "10,15 25,30"
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4