小码哥的IT人生

Style transformStyle 属性 详解

css3基础 2023-07-30 03:24:44小码哥的IT人生shichen

Style transformStyle 属性

定义和用法

transformStyle 属性设置或返回嵌套元素在 3D 空间中的呈现方式。

注释:此属性必须与 transform 属性 一起使用。

另请参阅:

JavaScript Style 对象:transform 属性

CSS 参考手册:transform-style 属性

实例

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

document.getElementById("myDIV").style.transformStyle = "preserve-3d";

 

完整实例【亲自试一试】:

<!DOCTYPE html>
<html>
<head>
<style>
#DIV1 {
  position: relative;
  height: 200px;
  width: 200px;
  margin: 100px;
  padding: 10px;
  border: 1px solid black;
}
#DIV2 {
  padding: 50px;
  position: absolute;
  border: 1px solid black;
  background-color: coral;
  transform: rotateY(50deg);
}
#DIV3 {
  padding: 40px;
  position: absolute;
  border: 1px solid black;
  background-color: lightblue;
  transform: rotateY(70deg);
}
</style>
</head>
<body>
<p>点击“试一试”按钮可保留 DIV2 元素子元素的 3D 位置:</p>
<button onclick="myFunction()">试一试</button>
<div id="DIV1">DIV1
  <div id="DIV2">HELLO DIV2
  <div id="DIV3">HELLO DIV3</div>
  </div>
</div>
<script>
function myFunction() {
  document.getElementById("DIV2").style.transformStyle = "preserve-3d";
}
</script>
<p><b>注释:</b>Internet Explorer 10 及更早版本不支持 transformStyle 属性。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

语法

返回 transformStyle 属性:

object.style.transformStyle

设置 transformStyle 属性:

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

属性值

描述
flat 默认值。子元素不会保留其 3D 位置。
preserve-3d 子元素将保留其 3D 位置。
initial 将此属性设置为其默认值。请参阅 initial
inherit 从其父元素继承此属性。请参阅 inherit

技术细节

默认值: flat
返回值: 字符串,表示元素的 transform-style 属性
CSS 版本: CSS3

浏览器支持

表中的数字注明了首个完全支持该属性的浏览器版本。

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
36.0 11.0 16.0 9.0 23.0

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024