目录

style transformStyle 属性

示例

让变换后的子元素保留 3D 变换:

document.getElementById("myDIV").style.transformStyle = "preserve-3d";
亲自试一试 »

描述

TransformStyle 属性设置或返回嵌套元素在 3D 空间中的渲染方式。

笔记:该属性必须与转换属性。


浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
transformStyle 36.0 11.0 16.0 9.0 23.0

语法

返回transformStyle属性:

object.style.transformStyle

设置transformStyle属性:

object.style.transformStyle = "flat|preserve-3d|initial|inherit"

属性值

Value Description
flat Default value. The child elements will NOT preserve its 3D position
preserve-3d The child elements will preserve its 3D position
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 平坦的
返回值: 一个字符串,表示元素的变换样式属性
CSS版本 CSS3

相关页面

JavaScript 样式对象:变换属性

CSS 参考:变换样式属性