如何指定 3D 元素显示视角


使用 CSS 视角属性指定 3D 元素的显示视角。

你可以尝试运行以下代码来实现

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo1 {
            position: relative;
            width: 150px;
            height: 150px;
            background-color: yellow;
            perspective: 80px;
            margin: 50px;
         }
         .demo2 {
            position: absolute;
            padding: 20px;
            background-color: orange;
            transform-style: preserve-3d;
            transform: rotateX(45deg);
         }
       </style>
   </head>
   <body>
      <h1>Rotation</h1>
      <div class = "demo1">Demo
         <div class = "demo2">Demo
         </div>
      </div>
   </body>
</html>

更新日期: 23-06-2020

55 个浏览量

开始你的 职业生涯

完成课程获得认证

开始
广告