Stay organized with collections
Save and categorize content based on your preferences.
blockly > utils > dom > setCssTransform
Sets the CSS transform property on an element. This function sets the non-vendor-prefixed and vendor-prefixed versions for backwards compatibility with older browsers. See https://caniuse.com/#feat=transforms2d
Signature:
export declare function setCssTransform(element: HTMLElement | SVGElement, transform: string): void;
Parameters
Parameter |
Type |
Description |
element |
HTMLElement | SVGElement |
Element to which the CSS transform will be applied. |
transform |
string |
The value of the CSS transform property. |
Returns:
void
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["The `setCssTransform` function applies CSS transforms to HTML or SVG elements, ensuring compatibility with various browsers."],["It takes the element and the desired transform string as input and sets the necessary CSS properties for the element."],["This function improves cross-browser compatibility for CSS transforms by setting both vendor-prefixed and non-prefixed versions of the `transform` property."],["It directly modifies the element's style and does not return any value."]]],[]]