#a {
width:800px;
height:400px;
margin:0 auto;
-webkit-perspective:1200px;
}
#b {
width:800px;
height:400px;
transform:rotatex(-20deg) rotatey(0deg);
position:relative;
-webkit-transform-style:preserve-3d;
animation:xz 10s linear infinite;
}
#b div {
width:100px;
height:100px;
background:#e4393c;
position:absolute;
top:150px;
left:350px;
}
#b div:nth-child(1) {
transform:rotatey(0deg) translatez(200px);
}
#b div:nth-child(2) {
transform:rotatey(60deg) translatez(200px);
}
#b div:nth-child(3) {
transform:rotatey(120deg) translatez(200px);
}
#b div:nth-child(4) {
transform:rotatey(180deg) translatez(200px);
}