<!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 {perspective: 500px;}
.box {
width: 200px;
height: 200px;
margin: 100px auto;
position: relative;
transition: all 2s;
/* 给父盒子增加 transform-style 属性 preserve-3d,让子元素放弃 3d 平面成果 */
transform-style: preserve-3d;
}
.box:hover {transform: rotateY(60deg);
}
.box>div {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: pink;
}
.box>div:last-child {
background-color: blue;
transform: rotateX(45deg);
transition: all 1s;
}
</style>
</head>
<body>
<div class=”box”>
<div></div>
<div></div>
</div>
</body>
</html>