创建一个盒子。

<div class="box"></div>

设置样式:

.box{
      width: 200px;
      height: 200px;
      background: red;
      margin: 200px auto;
      transition: all .5s;
    }
给父元素body设置视距透视。一定要做!
body{
      perspective: 500px;
    }

设置鼠标经过效果:

.box:hover{
      transform: translateZ(100px);
    }

最终效果:

请输入图片描述

最后修改:2022 年 08 月 09 日
如果觉得我的文章对你有用,请随意赞赏