2D转换 transform*/
transform: translate(-20px, -20px);
transform: rotate(45deg);
transform: scale(0.8);
transform: matrix(0, 0, 0, 0, 0, 0);
transform: rotateX(120deg);
transform: rotateY(120deg);
transition-property: all;
transition-duration: 5s;
transition-timing-function: linear;
transition-delay: 5s;
transition: all 5s linear 5s;
animation-name: name;
animation-duration: 5s;
animation-timing-function: linear;
animation-delay: 5s;
animation-iteration-count: infinite;
animation-direction: normal;
animation-play-state: paused;
animation: name 5s linear 5s infinite normal paused