<!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>
*{
margin: 0;
padding: 0;
list-style: none;
}
ul{
width: 500px;
height: 500px;
border: 1px solid royalblue;
margin: 30px auto;
}
ul>li{
width: 100px;
height: 50px;
background-color: royalblue;
margin-top: 35px;
}
ul>li:first-child{
transform: translateX(200px) translateY(50px) translateZ(150px);
transform: translate(100px,50px);
}
ul>li:nth-child(2){
transform: rotate(45deg);
}
ul>li:nth-child(3){
transform: scaleX(2) scaleY(0.5) scaleZ(1.5);
transform: scale(1.5,1);
}
ul>li:last-child{
transform: translate(100px,50px) rotate(45deg) scale(1.2);
}
</style>
</head>
<body>
<ul>
<li>translate</li>
<li>rotate</li>
<li>scale</li>
<li>综合</li>
</ul>
</body>
</html>