perspective
值为下图的d
,translateZ
值为下图中的Z
d
是视距
z
translateZ 的值 , 以屏幕为原点进行计算 , 如要超过视距 , 物体将消失
perspective:201px
设置在舞台上 , 默认的视觉中心在舞台中央
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
.box {
width: 600px;
margin: 200px;
perspective: 201px;
background-color: rgba(0, 0, 0, .1);
}
.perspective {
width: 100px;
height: 100px;
margin-top: 100px;
background-color: gold;
transition: all 3s;
}
.perspective:hover {
transform: translateZ(200px);
}
</style>
</head>
<body>
<div class="box">
<div class="perspective"></div>
</div>
</body>
</html>