css实现三维扫雷机爬行机器人效果代码

代码语言:html

所属分类:三维

代码描述:css实现三维扫雷机爬行机器人效果代码

代码标签: css 三维 扫雷机 爬行 机器人

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">





    <style>
        * {
            box-sizing: border-box;
        }
        
        html {
            width: 100%;
            height: 100%;
        }
        
        body {
            width: 100%;
            height: 100%;
            margin: 0;
            position: relative;
            overflow: hidden;
        }
        
        /* The stage. Set the perspective and origin here. */
        .canvas {
            width: 100%;
            height: 100%;
            position: absolute;
            perspective: 500px;
            --offsetPerspectiveX: 0px;
            --offsetPerspectiveY: 0px;
            perspective-origin: calc(50% + var(--offsetPerspectiveX)) calc(50% + var(--offsetPerspectiveY));
            transition: perspective-origin 0.25s ease;
        }
        
        /* 3D Canvas transform-style */
        .canvas * {
            transform-style: preserve-3d;
        }
        
        /* Auto center the camera */
        .canvas > * {
            position: absolute;
            top: 50%;
            left: 50%;
        }
        
        /* Apply camera rotation here. */
        .globalCamera {
        
        }
        
        /* Framework internals and test */
        @keyframes _rotateTest {
            0% {
                transform: rotateX(0deg);
            }
        
            100% {
                transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
            }
        }
        
        @keyframes _rotateYTest {
            0% {
                transform: rotateY(0deg);
            }
        
            100% {
                transform: rotateY(360deg);
            }
        }
        
        @keyframes _rotateZTest {
            0% {
                transform: rotateZ(0deg);
            }
        
            100% {
                transform: rotateZ(360deg);
            }
        }
        
        @keyframes _rotateXTest {
            0% {
                transform: rotateX(0deg);
            }
        
            100% {
                transform: rotateX(360deg);
            }
        }
        
        .reusableBox {
            --width: 10px;
            --length: 10px;
            --height: 10px;
        }
        
        ._reusableBox__boxFace {
            position: absolute;
        }
        
        
        ._reusableBox__boxFront, ._reusableBox__boxBack {
            width: var(--length);
            height: var(--height);
            left: calc(var(--length) / -2);
            top: calc(var(--height) / -2);
        }
        
        ._reusableBox__boxLeft, ._reusableBox__boxRight {
            width: var(--width);
            height: var(--height);
            left: calc(var(--width) / -2);
            top: calc(var(--height) / -2);
        }
        
        ._reusableBox__boxBottom, ._reusableBox__boxTop {
            width: var(--length);
            height: var(--width);
            left: calc(var(--length) / -2);
            top: calc(var(--width) / -2);
        }
        
        ._reusableBox__boxFront {
            transform: rotateY(0deg) translateZ(calc(var(--width) / 2));
        }
        
        ._reusableBox__boxBack {
            transform: rotateY(180deg) translateZ(calc(var(--width) / 2));
        }
        
        ._reusableBox__boxLeft {
            transform: rotateY(-90deg) translateZ(calc(var(--length) / 2));
        }
        
        ._reusableBox__boxRight {
            transform: rotateY(90deg) translateZ(calc(var(--length) / 2));
        }
        
        ._reusableBox__boxTop {
            transform: rotateX(90deg) translateZ(calc(var(--height) / 2));
        }
        
        ._reusableBox__boxBottom {
            transform: rotateX(-90deg) translateZ(calc(var(--height) / 2));
        }
        
        ._test ._reusableBox__boxFront {
            background: rgba(255, 0, 0, 0.5);
        }
        
        ._test ._reusableBox__boxBack {
            background: rgba(0, 128, 255, 0.5);
        }
        
        ._test ._reusableBox__boxLeft {
            background: rgba(0, 255, 34, 0.5);
        }
        
        ._test ._reusableBox__boxRight {
            background: rgba(221, 0, 255, 0.5);
        }
        
        ._test ._reusableBox__boxBottom {
            background: rgba(230, 255, 0, 0.5);
        }
        
        ._test ._reusableBox__boxTop {
            background: rgba(230, 255, 0, 0.5);
        }
        
        html {
            background: #c2f3ff;
        }
        
        body {
        
        }
        
        .canvas {
            --offsetPerspectiveY: -200px;
            perspective: 1500px;
        }
        
        .globalCamera {
            transform: rotateX(-10deg) rotateY(20deg);
            /*transition: transform 0.1s ease;*/
            /*animation: _rotateYTest 10s linear infinite;*/
        }
        
        .creeper {
            /*transform: rotateY(30deg);*/
            --unitSize: 2.5vh;
        }
        
        .creeperHead {
            --width: calc(var(--unitSize) * 8);
            --height: calc(var(--unitSize) * 8);
            --length: calc(var(--unitSize) * 8);
            transform: translateY(calc(var(--unitSize) * -10));
        }
        
        .creeperLegs {
            transform: translateY(calc(var(--unitSize) * 9));
        }
        
        .creeperLeg {
            --width: calc(var(--unitSize) * 4);
            --height: calc(var(--unitSize) * 6);
            --length: calc(var(--unitSize) * 4);
            transform-origin: 0 calc(var(--height) / -2) calc(var(--length) / -2);
            animation: walk 2s ease-in-out infinite;
        }
        
        .leg3 .creeperLeg, .leg2 .creeperLeg {
            transform-origin: 0 calc(var(--height) / -2) calc(var(--length) / 2);
        }
        
        .leg2 .creeperLeg, .leg4 .creeperLeg {
            animation-delay: -1s;
        }
        
        @keyframes walk {
            0% {
                transform: rotateX(7deg);
            }
            50% {
                transform: rotateX(-7deg);
            }
            100% {
                transform: rotateX(7deg);
            }
        }
        
        .leg1 {
            transform: translate3d(calc(var(--unitSize) * -2), 0, calc(var(--unitSize) * 4));
        }
        
        .leg2 {
            transform: translate3d(calc(var(--unitSize) * -2), 0, calc(var(--unitSize) * -4));
        }
        
        .leg3 {
            transform: translate3d(calc(var(--unitSize) * 2), 0, calc(var(--unitSize) * -4));
        }
        
        .leg4 {
            transform: translate3d(calc(var(--unitSize) * 2), 0, calc(var(--unitSize) * 4));
        }
        
        .creeper ._reusableBox__boxFace {
            display: grid;
            /*filter: drop-shadow(1px 0 #00000088) drop-shadow(-1px 0 #00000088) drop-shadow(0 1px #00000088) drop-shadow(0 -1px #00000088);*/
            filter: saturate(1.2) drop-shadow(0 0 1px #000a);
        }
        
        .creeperHead ._reusableBox__boxFace {
            grid-template-rows: repeat(8, 1fr);
            grid-template-columns: repeat(8, 1fr);
        }
        
        .creeperBody {
            --length: calc(var(--unitSize) * 8);
            --width: calc(var(--unitSize) * 4);
            --height: calc(var(--unitSize) * 12);
        }
        
        .explode ._reusableBox__boxFace {
            animation: flash 0.5s ease-out forwards;
        }
        
        .explode .creeperLeg {
            animation: none;
        }
        
        .explode {
            animation: expand 2s cubic-bezier(1, 0, 1, 0.5) forwards;
        }
        
        @keyframes flash {
            0% {
                filter: brightness(3) saturate(1.2) drop-shadow(0 0 1px #000a);
            }
        
            100% {
                filter: brightness(1.2) saturate(1.2) drop-shadow(0 0 1px #000a);
            }
        }
        
        @keyframes expand {
            0% {
                transform: scale(1);
            }
        
            100% {
                transform: scale3d(1.3, 1.3, 1.3);
            }
        }
    </style>



</head>



    <body>
        <div class="canvas">
            <div class="globalCamera">
                <div class="creeper">
                    <div class="reusableBox creeperBody">
                        <div class="_reusableBox__boxFace _reusableBox__boxBack" style="grid-template-columns: repeat(8, 1fr); grid-template-rows: repeat(12, 1fr);">
                            <div style="background: rgb(111, 197, 96);"></div>
                            <div style="background: rgb(116, 200, 99);"></div>
                            <div style="background: rgb(127, 208, 119);"></div>
                            <div style="background: rgb(104, 195, 89);"></div>
                            <div style="background: rgb(84, 179, 68);"></div>
                            <div style="background: rgb(80, 188, 76);"></div>
                            <div style="background: rgb(87, 152, 86);"></div>
                            <div style="background: rgb(94, 195, 78);"></div>
                            <div style="background: rgb(26, 171, 25);"></div>
                            <div style="background: rgb(147, 210, 132);"></div>
                            <div style="background: rgb(89, 184, 74);"></div>
                            <div style="background: rgb(72, 140, 69);"></div>
                            <div style="background: rgb(151, 215, 144);"></div>
                            <div style="background: rgb(109, 193, 94);"></div>
                            <div style="background: rgb(75, 204, 60);"></div>
                            <div style="background: rgb(219, 226, 216);"></div>
                            <div style="background: rgb(92, 182, 77);"></div>
                            <div style="background: rgb(96, 202, 78);"></div>
                            <div style="background: rgb(76, 179, 65);"></div>
                            <div style="background: rgb(150, 212, 140);"></div>
                            <div style="background: rgb(34, 157, 34);"></div>
                            <div style="background: rgb(28, 79, 20);"></div>
                            <div style="background: rgb(195, 215, 190);"></div>
                            <div style="background: rgb(63, 135, 56);"></div>
                            <div style="background: rgb(223, 231, 219);"></div>
                            <div style="background: rgb(26, 171, 25);"></div>
                            <div style="background: rgb(80, 177, 67);"></div>
                            <div style="background: rgb(90, 144, 90);"></div>
                            <div style="background: rgb(172, 220, 163);"></div>
                            <div style="background: rgb(112, 220, 93);"></div>
                            <div style="background: rgb(161, 203, 161);"></div>
                            <div style="background: rgb(63, 135, 56);"></div>
                            <div style="background: rgb(186, 206, 186);"></div>
                            <div style="background: rgb(30, 78, 24);"></div>
                            <div style="background: rgb(111, 197, 96);"></div>
                            <div style="background: rgb(94, 208, 76);"></div>
                            <div style="background: rgb(154, 215, 142);"></div>
                            <div style="background: rgb(86, 147, 85);"></div>
                            <div style="background: rgb(101, 188, 85);"></div>
                            <div style="background: rgb(90, 145, 88);"></div>
                            <div style="background: rgb(87, 152, 86);"></div>
                            <div style="background: rgb(88, 136, 87);"></div>
                            <div style="background: rgb(72, 150, 69);"></div>
                            <div style="background: rgb(191, 223, 185);"></div>
                            <div style="background: rgb(55, 140, 49);"></div>
                            <div style="background: rgb(121, 214, 103);"></div>
                            <div style="background: rgb(101, 192, 85);"></div>
                            <div style="background: rgb(119, 220, 100);"></div>
                            <div style="background: rgb(161, 203, 161);"></div>
                            <div style="background: rgb(114, 202, 96);"></div>
                            <div style="background: rgb(121, 206, 105);"></div>
                            <div style="background: rgb(41, 147, 38);"></div>
                            <div style="background: rgb(203, 223, 199);"></div>
                            <div style="background: rgb(161, 203, 161);"></div>
                            <div style="background: rgb(91, 139, 89);"></div>
                            <div style="background: rgb(30, 78, 24);"></div>
                            <div style="background: rgb(118, 220, 99);"></div>
                            <div style="background: rgb(95, 135, 95);"></div>
                            <div style="background: rgb(107, 183, 93);"></div>
                            <div style="background: rgb(111, 218, 93);"></div>
                            <div style="background: rgb(95, 179, 82);"></div>
                            <div style="background: rgb(119, 197, 105);"></div>
                            <div style="background: rgb(188, 223, 180);"></div>
                            <div style="background: rgb(114, 202, 96);"></div>
                            <div style="background: rgb(155, 215, 149);"></div>
                            <div style="background: rgb(119, 203, 102);"></div>
                            <div style="background: rgb(130, 222, 112);"></div>
                            <div style="background: rgb(82, 150, 81);"></div>
                            <div style="background: rgb(208, 215, 205);"></div>
                            <div style="background: rgb(30, 78, 24);"></div>
                            <div style="background: rgb(71, 178, 57);"></div>
                            <div style="background: rgb(112, 220, 93);"></div>
                            <div style="background: rgb(87, 208, 71);"></div>
                            <div style="background: rgb(191, 210, 187);"></div>
                            <div style="background: rgb(163, 208, 158);"></div>
                            <div style="background: rgb(172, 208, 163);"></div>
                            <div style="background: rgb(85, 184, 83);"></div>
                            <div style="background: rgb(154, 215, 142);"></div>
                            <div style="background: rgb(70, 186, 58);"></div>
                            <div style="background: rgb(96, 195, 81);"></div>
                            <div style="background: rgb(226, 226, 226);"></div>
                            <div style="background: rgb(77, 144, 74);"></div>
                            <div style="background: rgb(31, 84, 23);"></div>
                            <div style="background: rgb(95, 135, 95);"></div>
                            <div style="background: rgb(195, 210, 192);"></div>
                            <div style="background: rgb(30, 78, 24);"></div>
                            <div style="background: rgb(139, 210, 130);"></div>
                            <div style="background: rgb(105, 207, 87);"></div>
                            <div style="background: rgb(76, 145, 72);"></div>
                            <div style="background: rgb(90, 145, 88);"></div>
                            <div style="background: rgb(127, 208, 119);"></div>
                            <div style="background: rgb(95, 197, 89);"></div>
                            <div style="background: rgb(194, 226, 187);"></div>
                            <div style="background: rgb(77, 186, 76);"></div>
                            <div style="background: rgb(76, 157, 73);"></div>
                            <div style="background: rgb(105, 203, 90);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxFront" style="grid-template-columns: repeat(8, 1fr); grid-template-rows: repeat(12, 1fr);">
                            <div style="background: rgb(83, 148, 80);"></div>
                            <div style="background: rgb(80, 147, 78);"></div>
                            <div style="background: rgb(101, 192, 86);"></div>
                            <div style="background: rgb(75, 200, 62);"></div>
                            <div style="background: rgb(110, 203, 106);"></div>
                            <div style="background: rgb(87, 144, 86);"></div>
                            <div style="background: rgb(172, 220, 161);"></div>
                            <div style="background: rgb(191, 220, 185);"></div>
                            <div style="background: rgb(72, 147, 70);"></div>
                            <div style="background: rgb(93, 210, 75);"></div>
                            <div style="background: rgb(196, 223, 192);"></div>
                            <div style="background: rgb(11, 161, 11);"></div>
                            <div style="background: rgb(104, 195, 89);"></div>
                            <div style="background: rgb(188, 210, 185);"></div>
                            <div style="background: rgb(31, 84, 23);"></div>
                            <div style="background: rgb(130, 222, 112);"></div>
                            <div style="background: rgb(101, 188, 85);"></div>
                            <div style="background: rgb(147, 210, 132);"></div>
                            <div style="background: rgb(93, 210, 75);"></div>
                            <div style="background: rgb(151, 210, 141);"></div>
                            <div style="background: rgb(207, 223, 203);"></div>
                            <div style="background: rgb(114, 191, 99);"></div>
                            <div style="background: rgb(150, 212, 140);"></div>
                            <div style="background: rgb(118, 196, 104);"></div>
                            <div style="background: rgb(208, 215, 205);"></div>
                            <div style="background: rgb(89, 210, 74);"></div>
                            <div style="background: rgb(68, 139, 65);"></div>
                            <div style="background: rgb(148, 215, 142);"></div>
                            <div style="background: rgb(131, 210, 124);"></div>
                            <div style="background: rgb(120, 198, 106);"></div>
                            <div style="background: rgb(176, 210, 170);"></div>
                            <div style="background: rgb(133, 220, 116);"></div>
                            <div style="background: rgb(91, 144, 91);"></div>
                            <div style="background: rgb(194, 218, 190);"></div>
                            <div style="background: rgb(84, 146, 82);"></div>
                            <div style="background: rgb(83, 148, 80);"></div>
                            <div style="background: rgb(115, 189, 101);"></div>
                            <div style="background: rgb(197, 228, 192);"></div>
                            <div style="background: rgb(105, 177, 92);"></div>
                            <div style="background: rgb(100, 158, 99);"></div>
                            <div style="background: rgb(89, 210, 74);"></div>
                            <div style="background: rgb(96, 184, 81);"></div>
                            <div style="background: rgb(75, 141, 73);"></div>
                            <div style="background: rgb(139, 210, 130);"></div>
                            <div style="background: rgb(74, 198, 58);"></div>
                            <div style="background: rgb(130, 208, 119);"></div>
                            <div style="background: rgb(164, 210, 154);"></div>
                            <div style="background: rgb(98, 209, 83);"></div>
                            <div style="background: rgb(94, 208, 76);"></div>
                            <div style="background: rgb(63, 135, 56);"></div>
                            <div style="background: rgb(146, 206, 135);"></div>
                            <div style="background: rgb(120, 217, 101);"></div>
                            <div style="background: rgb(87, 144, 86);"></div>
                            <div style="background: rgb(178, 215, 170);"></div>
                            <div style="background: rgb(147, 215, 140);"></div>
                            <div style="background: rgb(95, 155, 93);"></div>
                            <div style="background: rgb(161, 213, 149);"></div>
                            <div style="background: rgb(91, 131, 90);"></div>
                            <div style="background: rgb(198, 228, 192);"></div>
                            <div style="background: rgb(87, 154, 84);"></div>
                            <div style="background: rgb(72, 150, 69);"></div>
                            <div style="background: rgb(81, 156, 76);"></div>
                            <div style="background: rgb(71, 147, 65);"></div>
                            <div style="background: rgb(80, 184, 66);"></div>
                            <div style="background: rgb(188, 210, 185);"></div>
                            <div style="background: rgb(184, 210, 179);"></div>
                            <div style="background: rgb(93, 210, 75);"></div>
                            <div style="background: rgb(191, 223, 185);"></div>
                            <div style="background: rgb(97, 196, 83);"></div>
                            <div style="background: rgb(112, 220, 93);"></div>
                            <div style="background: rgb(83, 148, 80);"></div>
                            <div style="background: rgb(149, 215, 142);"></div>
                            <div style="background: rgb(95, 195, 78);"></div>
                            <div style="background: rgb(105, 208, 88);"></div>
                            <div style="background: rgb(62, 172, 49);"></div>
                            <div style="background: rgb(131, 208, 119);"></div>
                            <div style="background: rgb(154, 215, 144);"></div>
                            <div style="background: rgb(87, 152, 86);"></div>
                            <div style="background: rgb(93, 154, 92);"></div>
                            <div style="background: rgb(88, 197, 70);"></div>
                            <div style="background: rgb(58, 151, 56);"></div>
                            <div style="background: rgb(158, 210, 147);"></div>
                            <div style="background: rgb(91, 212, 75);"></div>
                            <div style="background: rgb(195, 210, 192);"></div>
                            <div style="background: rgb(93, 210, 75);"></div>
                            <div style="background: rgb(110, 201, 101);"></div>
                            <div style="background: rgb(72, 150, 69);"></div>
                            <div style="background: rgb(197, 228, 192);"></div>
                            <div style="background: rgb(101, 192, 85);"></div>
                            <div style="background: rgb(77, 144, 74);"></div>
                            <div style="background: rgb(182, 215, 176);"></div>
                            <div style="background: rgb(114, 191, 99);"></div>
                            <div style="background: rgb(147, 215, 140);"></div>
                            <div style="background: rgb(122, 206, 105);"></div>
                            <div style="background: rgb(64, 134, 62);"></div>
                            <div style="background: rgb(133, 220, 116);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxLeft" style="grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(12, 1fr);">
                            <div style="background: rgb(145, 206, 133);"></div>
                            <div style="background: rgb(93, 153, 92);"></div>
                            <div style="background: rgb(120, 217, 101);"></div>
                            <div style="background: rgb(95, 155, 93);"></div>
                            <div style="background: rgb(194, 218, 190);"></div>
                            <div style="background: rgb(166, 220, 157);"></div>
                            <div style="background: rgb(63, 135, 56);"></div>
                            <div style="background: rgb(71, 191, 53);"></div>
                            <div style="background: rgb(71, 191, 53);"></div>
                            <div style="background: rgb(130, 208, 119);"></div>
                            <div style="background: rgb(91, 139, 89);"></div>
                            <div style="background: rgb(150, 215, 140);"></div>
                            <div style="background: rgb(64, 143, 58);"></div>
                            <div style="background: rgb(119, 202, 101);"></div>
                            <div style="background: rgb(65, 183, 54);"></div>
                            <div style="background: rgb(172, 210, 165);"></div>
                            <div style="background: rgb(96, 184, 81);"></div>
                            <div style="background: rgb(192, 223, 185);"></div>
                            <div style="background: rgb(80, 177, 67);"></div>
                            <div style="background: rgb(91, 212, 75);"></div>
                            <div style="background: rgb(83, 187, 68);"></div>
                            <div style="background: rgb(120, 198, 106);"></div>
                            <div style="background: rgb(93, 210, 75);"></div>
                            <div style="background: rgb(72, 144, 68);"></div>
                            <div style="background: rgb(165, 218, 155);"></div>
                            <div style="background: rgb(223, 231, 219);"></div>
                            <div style="background: rgb(154, 215, 142);"></div>
                            <div style="background: rgb(188, 210, 185);"></div>
                            <div style="background: rgb(71, 197, 54);"></div>
                            <div style="background: rgb(87, 144, 86);"></div>
                            <div style="background: rgb(93, 194, 79);"></div>
                            <div style="background: rgb(120, 206, 103);"></div>
                            <div style="background: rgb(11, 161, 11);"></div>
                            <div style="background: rgb(188, 223, 180);"></div>
                            <div style="background: rgb(31, 85, 24);"></div>
                            <div style="background: rgb(105, 194, 93);"></div>
                            <div style="background: rgb(115, 189, 101);"></div>
                            <div style="background: rgb(95, 149, 95);"></div>
                            <div style="background: rgb(120, 198, 106);"></div>
                            <div style="background: rgb(87, 208, 71);"></div>
                            <div style="background: rgb(91, 131, 90);"></div>
                            <div style="background: rgb(194, 226, 187);"></div>
                            <div style="background: rgb(114, 191, 99);"></div>
                            <div style="background: rgb(109, 181, 95);"></div>
                            <div style="background: rgb(196, 223, 192);"></div>
                            <div style="background: rgb(130, 208, 119);"></div>
                            <div style="background: rgb(119, 220, 100);"></div>
                            <div style="background: rgb(119, 203, 102);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxRight" style="grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(12, 1fr);">
                            <div style="background: rgb(176, 208, 170);"></div>
                            <div style="background: rgb(182, 215, 176);"></div>
                            <div style="background: rgb(119, 197, 105);"></div>
                            <div style="background: rgb(87, 154, 84);"></div>
                            <div style="background: rgb(31, 84, 23);"></div>
                            <div style="background: rgb(104, 195, 89);"></div>
                            <div style="background: rgb(101, 218, 83);"></div>
                            <div style="background: rgb(198, 228, 192);"></div>
                            <div style="background: rgb(115, 201, 98);"></div>
                            <div style="background: rgb(85, 149, 82);"></div>
                            <div style="background: rgb(96, 202, 77);"></div>
                            <div style="background: rgb(176, 208, 170);"></div>
                            <div style="background: rgb(72, 147, 70);"></div>
                            <div style="background: rgb(164, 210, 154);"></div>
                            <div style="background: rgb(192, 223, 185);"></div>
                            <div style="background: rgb(213, 213, 213);"></div>
                            <div style="background: rgb(101, 158, 101);"></div>
                            <div style="background: rgb(114, 193, 99);"></div>
                            <div style="background: rgb(165, 205, 159);"></div>
                            <div style="background: rgb(83, 153, 80);"></div>
                            <div style="background: rgb(191, 223, 185);"></div>
                            <div style="background: rgb(220, 220, 220);"></div>
                            <div style="background: rgb(89, 184, 74);"></div>
                            <div style="background: rgb(210, 213, 208);"></div>
                            <div style="background: rgb(80, 177, 67);"></div>
                            <div style="background: rgb(183, 215, 174);"></div>
                            <div style="background: rgb(95, 197, 79);"></div>
                            <div style="background: rgb(112, 220, 93);"></div>
                            <div style="background: rgb(92, 182, 77);"></div>
                            <div style="background: rgb(82, 150, 81);"></div>
                            <div style="background: rgb(198, 228, 192);"></div>
                            <div style="background: rgb(122, 206, 105);"></div>
                            <div style="background: rgb(80, 144, 77);"></div>
                            <div style="background: rgb(127, 208, 119);"></div>
                            <div style="background: rgb(0, 165, 0);"></div>
                            <div style="background: rgb(76, 142, 74);"></div>
                            <div style="background: rgb(119, 203, 102);"></div>
                            <div style="background: rgb(182, 215, 172);"></div>
                            <div style="background: rgb(93, 196, 78);"></div>
                            <div style="background: rgb(194, 226, 187);"></div>
                            <div style="background: rgb(93, 154, 92);"></div>
                            <div style="background: rgb(176, 208, 170);"></div>
                            <div style="background: rgb(58, 151, 56);"></div>
                            <div style="background: rgb(147, 215, 140);"></div>
                            <div style="background: rgb(86, 189, 72);"></div>
                            <div style="background: rgb(113, 190, 98);"></div>
                            <div style="background: rgb(172, 208, 163);"></div>
                            <div style="background: rgb(79, 186, 67);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxBottom" style="grid-template-columns: repeat(8, 1fr); grid-template-rows: repeat(4, 1fr);">
                            <div style="background: rgb(199, 228, 194);"></div>
                            <div style="background: rgb(90, 145, 88);"></div>
                            <div style="background: rgb(124, 209, 106);"></div>
                            <div style="background: rgb(157, 199, 157);"></div>
                            <div style="background: rgb(76, 142, 74);"></div>
                            <div style="background: rgb(188, 210, 185);"></div>
                            <div style="background: rgb(36, 176, 30);"></div>
                            <div style="background: rgb(89, 210, 74);"></div>
                            <div style="background: rgb(105, 207, 87);"></div>
                            <div style="background: rgb(80, 177, 67);"></div>
                            <div style="background: rgb(195, 215, 190);"></div>
                            <div style="background: rgb(34, 157, 34);"></div>
                            <div style="background: rgb(55, 140, 49);"></div>
                            <div style="background: rgb(95, 155, 93);"></div>
                            <div style="background: rgb(29, 76, 22);"></div>
                            <div style="background: rgb(63, 135, 56);"></div>
                            <div style="background: rgb(118, 220, 99);"></div>
                            <div style="background: rgb(165, 218, 155);"></div>
                            <div style="background: rgb(89, 210, 74);"></div>
                            <div style="background: rgb(91, 212, 75);"></div>
                            <div style="background: rgb(166, 220, 157);"></div>
                            <div style="background: rgb(71, 147, 65);"></div>
                            <div style="background: rgb(114, 202, 96);"></div>
                            <div style="background: rgb(165, 218, 155);"></div>
                            <div style="background: rgb(121, 214, 103);"></div>
                            <div style="background: rgb(116, 210, 99);"></div>
                            <div style="background: rgb(107, 195, 92);"></div>
                            <div style="background: rgb(101, 192, 85);"></div>
                            <div style="background: rgb(71, 147, 65);"></div>
                            <div style="background: rgb(185, 223, 176);"></div>
                            <div style="background: rgb(101, 183, 87);"></div>
                            <div style="background: rgb(131, 208, 119);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxTop" style="grid-template-columns: repeat(8, 1fr); grid-template-rows: repeat(4, 1fr);">
                            <div style="background: rgb(191, 223, 185);"></div>
                            <div style="background: rgb(56, 183, 52);"></div>
                            <div style="background: rgb(80, 177, 67);"></div>
                            <div style="background: rgb(172, 220, 163);"></div>
                            <div style="background: rgb(75, 204, 60);"></div>
                            <div style="background: rgb(228, 228, 228);"></div>
                            <div style="background: rgb(95, 155, 93);"></div>
                            <div style="background: rgb(116, 200, 99);"></div>
                            <div style="background: rgb(118, 192, 105);"></div>
                            <div style="background: rgb(72, 144, 68);"></div>
                            <div style="background: rgb(86, 147, 85);"></div>
                            <div style="background: rgb(62, 172, 49);"></div>
                            <div style="background: rgb(70, 186, 58);"></div>
                            <div style="background: rgb(131, 208, 119);"></div>
                            <div style="background: rgb(216, 220, 214);"></div>
                            <div style="background: rgb(139, 210, 130);"></div>
                            <div style="background: rgb(120, 217, 101);"></div>
                            <div style="background: rgb(83, 144, 82);"></div>
                            <div style="background: rgb(131, 210, 124);"></div>
                            <div style="background: rgb(89, 184, 74);"></div>
                            <div style="background: rgb(105, 207, 87);"></div>
                            <div style="background: rgb(182, 215, 172);"></div>
                            <div style="background: rgb(219, 220, 218);"></div>
                            <div style="background: rgb(71, 197, 54);"></div>
                            <div style="background: rgb(96, 202, 78);"></div>
                            <div style="background: rgb(197, 228, 192);"></div>
                            <div style="background: rgb(104, 207, 87);"></div>
                            <div style="background: rgb(115, 189, 101);"></div>
                            <div style="background: rgb(95, 179, 82);"></div>
                            <div style="background: rgb(208, 215, 205);"></div>
                            <div style="background: rgb(151, 210, 141);"></div>
                            <div style="background: rgb(94, 213, 76);"></div>
                        </div>
                    </div>
                    <div class="reusableBox creeperHead">
                        <div class="_reusableBox__boxFace _reusableBox__boxBack">
                            <div style="background: rgb(90, 144, 90);"></div>
                            <div style="background: rgb(209, 223, 206);"></div>
                            <div style="background: rgb(118, 192, 105);"></div>
                            <div style="background: rgb(202, 210, 200);"></div>
                            <div style="background: rgb(155, 215, 149);"></div>
                            <div style="background: rgb(149, 215, 142);"></div>
                            <div style="background: rgb(172, 208, 163);"></div>
                            <div style="background: rgb(83, 202, 66);"></div>
                            <div style="background: rgb(202, 210, 200);"></div>
                            <div style="background: rgb(226, 226, 226);"></div>
                            <div style="background: rgb(113, 190, 98);"></div>
                            <div style="background: rgb(93, 154, 92);"></div>
                            <div style="background: rgb(83, 144, 82);"></div>
                            <div style="background: rgb(163, 206, 154);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(76, 157, 73);"></div>
                            <div style="background: rgb(188, 223, 180);"></div>
                            <div style="background: rgb(114, 193, 99);"></div>
                            <div style="background: rgb(114, 204, 97);"></div>
                            <div style="background: rgb(228, 228, 228);"></div>
                            <div style="background: rgb(119, 197, 105);"></div>
                            <div style="background: rgb(79, 153, 76);"></div>
                            <div style="background: rgb(208, 215, 205);"></div>
                            <div style="background: rgb(107, 195, 92);"></div>
                            <div style="background: rgb(150, 210, 139);"></div>
                            <div style="background: rgb(122, 206, 105);"></div>
                            <div style="background: rgb(123, 220, 104);"></div>
                            <div style="background: rgb(215, 215, 215);"></div>
                            <div style="background: rgb(115, 187, 101);"></div>
                            <div style="background: rgb(131, 222, 113);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(84, 179, 68);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(197, 228, 192);"></div>
                            <div style="background: rgb(183, 215, 174);"></div>
                            <div style="background: rgb(216, 220, 214);"></div>
                            <div style="background: rgb(89, 210, 74);"></div>
                            <div style="background: rgb(98, 209, 83);"></div>
                            <div style="background: rgb(220, 220, 220);"></div>
                            <div style="background: rgb(112, 220, 93);"></div>
                            <div style="background: rgb(210, 213, 208);"></div>
                            <div style="background: rgb(87, 154, 84);"></div>
                            <div style="background: rgb(91, 131, 90);"></div>
                            <div style="background: rgb(26, 171, 25);"></div>
                            <div style="background: rgb(48, 177, 48);"></div>
                            <div style="background: rgb(161, 203, 161);"></div>
                            <div style="background: rgb(215, 215, 215);"></div>
                            <div style="background: rgb(101, 158, 101);"></div>
                            <div style="background: rgb(223, 231, 219);"></div>
                            <div style="background: rgb(118, 196, 104);"></div>
                            <div style="background: rgb(178, 215, 170);"></div>
                            <div style="background: rgb(0, 165, 0);"></div>
                            <div style="background: rgb(0, 165, 0);"></div>
                            <div style="background: rgb(186, 206, 186);"></div>
                            <div style="background: rgb(71, 145, 67);"></div>
                            <div style="background: rgb(109, 181, 95);"></div>
                            <div style="background: rgb(98, 187, 83);"></div>
                            <div style="background: rgb(104, 195, 89);"></div>
                            <div style="background: rgb(70, 139, 66);"></div>
                            <div style="background: rgb(36, 176, 30);"></div>
                            <div style="background: rgb(0, 165, 0);"></div>
                            <div style="background: rgb(150, 212, 140);"></div>
                            <div style="background: rgb(111, 197, 96);"></div>
                            <div style="background: rgb(105, 207, 87);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxFront">
                            <div style="background: rgb(165, 205, 159);"></div>
                            <div style="background: rgb(19, 169, 15);"></div>
                            <div style="background: rgb(76, 179, 65);"></div>
                            <div style="background: rgb(157, 199, 157);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(133, 220, 116);"></div>
                            <div style="background: rgb(125, 204, 110);"></div>
                            <div style="background: rgb(77, 144, 74);"></div>
                            <div style="background: rgb(41, 147, 38);"></div>
                            <div style="background: rgb(95, 197, 89);"></div>
                            <div style="background: rgb(65, 183, 54);"></div>
                            <div style="background: rgb(110, 201, 101);"></div>
                            <div style="background: rgb(76, 145, 72);"></div>
                            <div style="background: rgb(112, 220, 93);"></div>
                            <div style="background: rgb(101, 188, 85);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(71, 197, 54);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(147, 215, 140);"></div>
                            <div style="background: rgb(87, 152, 86);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(220, 220, 220);"></div>
                            <div style="background: rgb(76, 203, 61);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(103, 207, 85);"></div>
                            <div style="background: rgb(71, 178, 57);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(120, 206, 103);"></div>
                            <div style="background: rgb(137, 210, 130);"></div>
                            <div style="background: rgb(101, 183, 87);"></div>
                            <div style="background: rgb(148, 215, 142);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(195, 210, 192);"></div>
                            <div style="background: rgb(72, 140, 69);"></div>
                            <div style="background: rgb(94, 208, 76);"></div>
                            <div style="background: rgb(164, 210, 154);"></div>
                            <div style="background: rgb(81, 151, 78);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(103, 215, 85);"></div>
                            <div style="background: rgb(191, 210, 187);"></div>
                            <div style="background: rgb(194, 226, 187);"></div>
                            <div style="background: rgb(103, 161, 102);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(95, 188, 80);"></div>
                            <div style="background: rgb(81, 152, 77);"></div>
                            <div style="background: rgb(103, 215, 85);"></div>
                            <div style="background: rgb(130, 222, 112);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(147, 210, 132);"></div>
                            <div style="background: rgb(174, 208, 168);"></div>
                            <div style="background: rgb(19, 19, 19);"></div>
                            <div style="background: rgb(59, 142, 55);"></div>
                            <div style="background: rgb(104, 207, 87);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxLeft">
                            <div style="background: rgb(75, 207, 61);"></div>
                            <div style="background: rgb(79, 186, 67);"></div>
                            <div style="background: rgb(157, 208, 148);"></div>
                            <div style="background: rgb(95, 197, 79);"></div>
                            <div style="background: rgb(89, 184, 74);"></div>
                            <div style="background: rgb(91, 139, 89);"></div>
                            <div style="background: rgb(102, 198, 86);"></div>
                            <div style="background: rgb(93, 194, 79);"></div>
                            <div style="background: rgb(86, 189, 72);"></div>
                            <div style="background: rgb(79, 138, 78);"></div>
                            <div style="background: rgb(140, 210, 126);"></div>
                            <div style="background: rgb(72, 150, 69);"></div>
                            <div style="background: rgb(77, 185, 63);"></div>
                            <div style="background: rgb(139, 210, 130);"></div>
                            <div style="background: rgb(70, 186, 58);"></div>
                            <div style="background: rgb(130, 208, 119);"></div>
                            <div style="background: rgb(80, 147, 78);"></div>
                            <div style="background: rgb(213, 213, 213);"></div>
                            <div style="background: rgb(172, 220, 161);"></div>
                            <div style="background: rgb(151, 210, 141);"></div>
                            <div style="background: rgb(155, 215, 149);"></div>
                            <div style="background: rgb(64, 134, 62);"></div>
                            <div style="background: rgb(64, 143, 58);"></div>
                            <div style="background: rgb(130, 206, 115);"></div>
                            <div style="background: rgb(119, 203, 102);"></div>
                            <div style="background: rgb(221, 226, 221);"></div>
                            <div style="background: rgb(87, 208, 71);"></div>
                            <div style="background: rgb(91, 212, 75);"></div>
                            <div style="background: rgb(170, 220, 163);"></div>
                            <div style="background: rgb(183, 215, 174);"></div>
                            <div style="background: rgb(150, 215, 140);"></div>
                            <div style="background: rgb(154, 215, 144);"></div>
                            <div style="background: rgb(95, 179, 82);"></div>
                            <div style="background: rgb(185, 223, 176);"></div>
                            <div style="background: rgb(105, 203, 90);"></div>
                            <div style="background: rgb(0, 165, 0);"></div>
                            <div style="background: rgb(56, 183, 52);"></div>
                            <div style="background: rgb(93, 210, 75);"></div>
                            <div style="background: rgb(75, 204, 60);"></div>
                            <div style="background: rgb(131, 210, 124);"></div>
                            <div style="background: rgb(96, 195, 81);"></div>
                            <div style="background: rgb(151, 215, 144);"></div>
                            <div style="background: rgb(65, 145, 62);"></div>
                            <div style="background: rgb(0, 165, 0);"></div>
                            <div style="background: rgb(19, 170, 18);"></div>
                            <div style="background: rgb(96, 202, 77);"></div>
                            <div style="background: rgb(64, 178, 53);"></div>
                            <div style="background: rgb(165, 218, 155);"></div>
                            <div style="background: rgb(62, 148, 56);"></div>
                            <div style="background: rgb(158, 210, 147);"></div>
                            <div style="background: rgb(110, 203, 106);"></div>
                            <div style="background: rgb(58, 151, 56);"></div>
                            <div style="background: rgb(84, 146, 82);"></div>
                            <div style="background: rgb(63, 175, 51);"></div>
                            <div style="background: rgb(131, 208, 119);"></div>
                            <div style="background: rgb(145, 206, 133);"></div>
                            <div style="background: rgb(96, 202, 78);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(203, 223, 199);"></div>
                            <div style="background: rgb(161, 213, 149);"></div>
                            <div style="background: rgb(157, 215, 149);"></div>
                            <div style="background: rgb(83, 187, 68);"></div>
                            <div style="background: rgb(174, 208, 168);"></div>
                            <div style="background: rgb(72, 147, 70);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxRight">
                            <div style="background: rgb(94, 195, 78);"></div>
                            <div style="background: rgb(184, 210, 179);"></div>
                            <div style="background: rgb(94, 213, 76);"></div>
                            <div style="background: rgb(108, 205, 90);"></div>
                            <div style="background: rgb(86, 147, 85);"></div>
                            <div style="background: rgb(175, 220, 167);"></div>
                            <div style="background: rgb(194, 226, 187);"></div>
                            <div style="background: rgb(188, 210, 183);"></div>
                            <div style="background: rgb(76, 178, 62);"></div>
                            <div style="background: rgb(185, 223, 176);"></div>
                            <div style="background: rgb(105, 208, 88);"></div>
                            <div style="background: rgb(114, 191, 99);"></div>
                            <div style="background: rgb(191, 220, 185);"></div>
                            <div style="background: rgb(80, 144, 77);"></div>
                            <div style="background: rgb(176, 208, 170);"></div>
                            <div style="background: rgb(170, 220, 161);"></div>
                            <div style="background: rgb(194, 218, 190);"></div>
                            <div style="background: rgb(198, 228, 192);"></div>
                            <div style="background: rgb(96, 184, 81);"></div>
                            <div style="background: rgb(166, 220, 157);"></div>
                            <div style="background: rgb(88, 136, 87);"></div>
                            <div style="background: rgb(120, 217, 101);"></div>
                            <div style="background: rgb(88, 197, 70);"></div>
                            <div style="background: rgb(176, 215, 166);"></div>
                            <div style="background: rgb(184, 213, 177);"></div>
                            <div style="background: rgb(179, 206, 174);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(218, 218, 218);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(115, 208, 98);"></div>
                            <div style="background: rgb(80, 177, 67);"></div>
                            <div style="background: rgb(148, 206, 137);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(114, 202, 96);"></div>
                            <div style="background: rgb(115, 201, 98);"></div>
                            <div style="background: rgb(215, 215, 215);"></div>
                            <div style="background: rgb(208, 215, 205);"></div>
                            <div style="background: rgb(96, 193, 80);"></div>
                            <div style="background: rgb(95, 135, 95);"></div>
                            <div style="background: rgb(182, 215, 172);"></div>
                            <div style="background: rgb(188, 210, 185);"></div>
                            <div style="background: rgb(124, 209, 106);"></div>
                            <div style="background: rgb(105, 177, 92);"></div>
                            <div style="background: rgb(210, 210, 210);"></div>
                            <div style="background: rgb(79, 139, 78);"></div>
                            <div style="background: rgb(103, 185, 89);"></div>
                            <div style="background: rgb(100, 158, 99);"></div>
                            <div style="background: rgb(191, 223, 185);"></div>
                            <div style="background: rgb(87, 144, 86);"></div>
                            <div style="background: rgb(80, 184, 66);"></div>
                            <div style="background: rgb(207, 223, 203);"></div>
                            <div style="background: rgb(83, 148, 80);"></div>
                            <div style="background: rgb(90, 145, 88);"></div>
                            <div style="background: rgb(176, 210, 170);"></div>
                            <div style="background: rgb(109, 202, 91);"></div>
                            <div style="background: rgb(116, 200, 99);"></div>
                            <div style="background: rgb(95, 195, 78);"></div>
                            <div style="background: rgb(101, 218, 83);"></div>
                            <div style="background: rgb(85, 184, 83);"></div>
                            <div style="background: rgb(75, 200, 62);"></div>
                            <div style="background: rgb(107, 213, 89);"></div>
                            <div style="background: rgb(82, 143, 80);"></div>
                            <div style="background: rgb(118, 220, 99);"></div>
                            <div style="background: rgb(115, 189, 101);"></div>
                        </div>
                        <div class="_reusableBox__boxFace _reusableBox__boxBottom">
                            <div style="background: rgb(219, 220, 218);"></div>
                            <div style="background: rgb(95, 191, 80);"></div>
                            <div style="background: rgb(110, 185, 96);"></div>
                            <div style="background: rgb(220, 220, 220);"></div>
                            <div style="background: rgb(182, 215, 176);"></div>
                            <div style="background: rgb(108, 213, 90);"></div>
                            <div style="background: rgb(106, 204, 90);"></div>
                            <div style="background: rgb(76, 142, 74);"></div>
                            <div style="background: rgb(95, 155, 93);"></div>
                            <div style="background: rgb(192, 226, 185);"></div>
                            <div style="background: rgb(105, 194, 93);"></div>
                            <div style="background: rgb(0, 165, 0);"></div>
                            <div style="background: rgb(34, 157, 34);"></div>
                            <div style="background: rgb(119, 202, 101);"></div>
                            <div style="background: rgb(101, 192, 86);"></div>
                            <div style="background: rgb(146, 206, 135);"></div>
                            <div style="background: rgb(71, 147, 65);"></div>
                            <div style="background: rgb(71, 147, 65);"></div>
                            <div style="background: rgb(71, 147, 65);"></div>
                            <div style="background: rgb(71, 147, 65);"></div>
                            <div style="backgr.........完整代码请登录后点击上方下载按钮下载查看

网友评论0