SOURCE

console 命令行工具 X clear

                    
>
console
<div class="box">
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
        <div></div>
    </div>
body {
            /* perspective: unset; */
            transform-style: preserve-3d;
            /* perspective-origin: top left; */
        }
        .box {
            position: relative;
            width: 300px;
            height: 200px;
            margin: 100px auto 900px auto;
            animation: rotate 3s infinite linear;
            background: url(https://www.hupucdn.com/uploads/hupu/feature/ft-11520_2020-09-08.jpg) no-repeat;
            background-size: 100% 100%;
            transform: translateX(-50%);
            transform-style: preserve-3d;
            /* perspective: 900px; */
            animation: rotate 4s infinite linear;
        }
        .box div {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-image: url(https://www.hupucdn.com/uploads/hupu/feature/ft-03882_2020-09-08.jpg);
            background-repeat: no-repeat;
            background-size: 100%;
        }
        .box div:nth-child(1) {transform: translateZ(300px);}
        .box div:nth-child(2) {transform: rotateY(60deg) translateZ(300px);}
        .box div:nth-child(3) {transform: rotateY(120deg) translateZ(300px);}
        .box div:nth-child(4) {transform: rotateY(180deg) translateZ(300px);}
        .box div:nth-child(5) {transform: rotateY(240deg) translateZ(300px);}
        .box div:nth-child(6) {transform: rotateY(300deg) translateZ(300px);}
        @keyframes rotate {
            from {transform: rotateY(0);}
            to {transform: rotateY(360deg);}
        }
        .box:hover {
            animation-play-state: paused;
        }