1.移动
2.透视perspective
透视写在被观察元素的父盒子上
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
/* 透视值越小,看到的越大 */
perspective: 500px;
}
div {
width: 200px;
height: 200px;
background-color: #16ccec;
transform: translate3d(100px, 100px, 100px);
}
</style>
</head>
<body>
<div></div>
</body>
d:视距,就是人的眼睛到屏幕的距离
z:z轴,物体到屏幕的距离,z轴越大,我们看到的物体就越大。
3.旋转
语法:
x轴:
y轴:
4.3D呈现transform-style