			@keyframes box-ani{
				from{
					transform: rotateZ(-30deg) rotateY(0deg);
				}
				to{
					transform: rotateZ(-30deg) rotateY(360deg);
				}
			}
			body {
				/*背景为黑色*/
				background-color: purple;
			}

			/* #box相当于id="box" */
			#box {
			
				height: 250px;
				width: 200px;
				position: fixed;
				left: calc(50% - 100px);
				top: calc(50% - 125px);
				transform-style: preserve-3d;
				transform: rotateX(30deg);
				animation:box-ani ;
				animation-duration: 10s;
				animation-iteration-count: infinite;
				animation-delay: 0s;
				animation-timing-function: linear;
			}
			#box>img{
				width: 80%;
				height: 80%;
				position: absolute;
				left: 0px;
				top: 0px;
				box-shadow: 10px -20px 20px 10px pink;
			}
			#box>img:nth-child(1){
				transform: rotateY(30deg) translateZ(500px);
			}
			#box>img:nth-child(2){
				transform: rotateY(60deg) translateZ(500px);
			}
			#box>img:nth-child(3){
				transform: rotateY(90deg) translateZ(500px);
			}
			#box>img:nth-child(4){
				transform: rotateY(120deg) translateZ(500px);
			}
			#box>img:nth-child(5){
				transform: rotateY(150deg) translateZ(500px);
			}
			#box>img:nth-child(6){
				transform: rotateY(180deg) translateZ(500px);
			}
			#box>img:nth-child(7){
				transform: rotateY(210deg) translateZ(500px);
			}
			#box>img:nth-child(8){
				transform: rotateY(240deg) translateZ(500px);
			}
			#box>img:nth-child(9){
				transform: rotateY(270deg) translateZ(500px);
			}
			#box>img:nth-child(10){
				transform: rotateY(300deg) translateZ(500px);
			}
			#box>img:nth-child(11){
				transform: rotateY(330deg) translateZ(500px);
			}
			#box>img:nth-child(12){
				transform: rotateY(360deg) translateZ(500px);
			}