其他分享
首页 > 其他分享> > Z轴平移

Z轴平移

作者:互联网

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <style>
      html {
        /* 设置当前网页的视距为800px,人眼距离网页的距离 */
        perspective: 800px;
      }

      body {
        border: 1px red solid;
        background-color: rgb(241, 241, 241);
      }
      .box1 {
        width: 200px;
        height: 200px;
        background-color: #bfa;
        margin: 200px auto;
        /* 
                z轴平移,调整元素在z轴的位置,正常情况就是调整元素和人眼之间的距离,
                    距离越大,元素离人越近
                z轴平移属于立体效果(近大远小),默认情况下网页是不支持透视,如果需要看见效果
                    必须要设置网页的视距
            */

        transition: 2s;
      }

      body:hover .box1 {
        transform: translateZ(200px);
      }
    </style>
  </head>
  <body>
    <div class="box1"></div>
  </body>
</html>

 

标签:平移,网页,color,距离,241,200px
来源: https://www.cnblogs.com/0722tian/p/16062566.html