CSS: transform-style

 

 

<!DOCTYPE html>
<html lang="en">
<head>
  <Meta charset="UTF-8">
  <Meta http-equiv="X-UA-Compatible" content="IE=edge">
  <Meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    body{
      /* .Box .Box>div 都开启透视效果 */
      perspective: 500px;
    }
    .Box{
      position: relative;
      width: 200px;
      height: 200px;
      margin: 100px auto;
      /* 子元素 .Box>div 保持3d空间 */
      transform-style: preserve-3d;
      transform: rotateY(60deg);
    }
    .Box div{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: palegoldenrod;
    }
    .Box div:last-child{
      background-color: teal;
      transform: rotateX(60deg);
    }
  </style>
</head>
<body>
  <div class="Box">
    <div></div>
    <div></div>
  </div>
</body>
</html>

 

相关文章

Css3如何实现鼠标移上变长特效?(图文+视频)
css3怎么实现鼠标悬停图片时缓慢变大效果?(图文+视频)
jquery如何实现点击网页回到顶部效果?(图文+视频)
css3边框阴影效果怎么做?(图文+视频)
css怎么实现圆角边框和圆形效果?(图文+视频教程)
Css3如何实现旋转移动动画特效