封鎖 >utils >數字 >setCssTransform
utils.dom.setCssTransform() 函式
設定元素的 CSS 轉換屬性。這個函式會設定非供應商前置字元和供應商前置字元版本,以便與舊版瀏覽器回溯相容。請前往 https://caniuse.com/#feat=transforms2d
Signature:
export declare function setCssTransform(element: HTMLElement | SVGElement, transform: string): void;
參數
參數 | 類型 | 說明 |
---|---|---|
元素 | HTMLElement |SVGElement | 要套用 CSS 轉換的元素。 |
transform | 字串 | CSS transform 屬性的值。 |
傳回:
void