CSSTransformValue: length property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Want more browser support for this feature? Tell us why.
Note: This feature is available in Web Workers.
The length read-only property of the CSSTransformValue interface returns the number of items in the object.
Value
An integer.
Examples
>Basic usage
js
const transform = new CSSTransformValue([
new CSSTranslate(CSS.px(10), CSS.px(20)),
new CSSScale(2, 3),
]);
console.log(transform.length); // 2
Specifications
| Specification |
|---|
| CSS Typed OM Level 1> # dom-csstransformvalue-length> |