Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="scene">
  <div class="bee">
    <div class="wing_right wing"></div>
    <div class="wing_left wing"></div>
    <div class="antenna_right antenna"></div>
    <div class="antenna_left antenna"></div>
    <div class="bee_face front"></div>
    <div class="bee_face back"></div>
    <div class="bee_face right"></div>
    <div class="bee_face left"></div>
    <div class="bee_face top"></div>
    <div class="bee_face bottom"></div>
    <div class="leg_right leg_right_one leg"></div>
    <div class="leg_right leg_right_two leg"></div>
    <div class="leg_right leg_right_three leg"></div>
    <div class="leg_left leg_left_one leg"></div>
    <div class="leg_left leg_left_two leg"></div>
    <div class="leg_left leg_left_three leg"></div>
    <div class="stinger"></div>
  </div>
  <div class="cube">
    <div class="rose">
      <div class="rose_first rose_part"></div>
      <div class="rose_second rose_part"></div>
    </div>
    <div class="cube_face front"></div>
    <div class="cube_face back"></div>
    <div class="cube_face right"></div>
    <div class="cube_face left"></div>
    <div class="cube_face top"></div>
    <div class="cube_face bottom"></div>
    <div class="ground"></div>
    <div class="grass">
      <div class="grass_first grass_part"></div>
      <div class="grass_second grass_part"></div>
    </div>
  </div>
</div>
<div id="author">
  <h1>BEE</h1> <span>by Fariat</span>
</div>
              
            
!

CSS

              
                * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bee-width: 200px;
  --bee-height: 100px;
  --bee-scale: 0.5;
  --cube-scale: 0.5;
  --bee-front: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/front.png");
  --bee-back: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/back.png");
  --bee-left: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/left.png");
  --bee-right: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/right.png");
  --bee-top: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/top.png");
  --bee-bottom: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/bottom.png");
  --bee-antenna: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/antenna.png");
  --bee-wing: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/wing.png");
  --bee-leg: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/leg.png");
  --cube-sides: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/sides.jpg");
  --cube-top: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/top.jpg");
  --cube-bottom: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/bottom.jpg");
  --rose: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/rose.png");
  --grass: url("https://raw.githubusercontent.com/ifariat/3D-CSS-Minecraft-s-Bee/main/grass.png");
}
html,
body {
  width: 100vw;
  height: 100vh;
}
body {
  background: linear-gradient(
    360deg,
    rgb(0 0 0),
    rgb(0 0 0),
    rgb(4 1 12),
    rgb(35 5 42),
    rgb(81 24 38)
  );
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scene {
  perspective: 700px;
  transform-style: preserve-3d;
  width: 100%;
  display: flex;
  overflow: hidden;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.bee {
  width: 400px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: top;
  animation: shake 8s linear infinite;
  bottom: -10px;
}
.bee_face {
  position: absolute;
  width: 280px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  filter: saturate(1.2);
}
.bee_face.top {
  background: var(--bee-top) center / cover no-repeat;
  transform: translateY(-100px) rotateX(90deg) rotateZ(90deg);
  box-shadow: inset 0 0 70px 0px rgb(0 0 0 / 70%);
}
.bee_face.bottom {
  background: var(--bee-bottom) center / cover no-repeat;
  transform: translateY(100px) rotateX(90deg) rotateZ(90deg);
  box-shadow: inset 0 0 70px 0px rgb(0 0 0 / 70%);
}
.bee_face.right {
  background: var(--bee-right) center / cover no-repeat;
  transform: translateX(100px) rotateY(90deg);
  box-shadow: inset 0 0 70px 0px rgb(0 0 0 / 70%);
}
.bee_face.left {
  background: var(--bee-left) center / cover no-repeat;
  transform: translateX(-100px) rotateY(-90deg);
  box-shadow: inset 0 0 70px 0px rgb(0 0 0 / 70%);
}
.bee_face.front {
  background: var(--bee-front) center / contain no-repeat;
  transform: translateZ(140px);
  width: 200px;
  height: 200px;
}
.bee_face.back {
  background: var(--bee-back) center / cover no-repeat;
  transform: translateZ(-140px) rotateY(-180deg);
  width: 200px;
  height: 200px;
  box-shadow: inset 0 0 70px 0px rgb(0 0 0 / 70%);
}
.antenna {
  position: absolute;
  width: 70px;
  height: 55px;
  background: var(--bee-antenna) center / cover no-repeat;
}
.antenna_right {
  transform: translate3d(50px, -71px, 170px) rotateY(90deg);
}
.antenna_left {
  transform: translate3d(-50px, -71px, 170px) rotateY(90deg);
}
.leg {
  position: absolute;
  width: 30px;
  height: 50px;
  background: var(--bee-leg);
  background-size: cover;
}
.leg_right_one {
  transform: translate3d(50px, 125px, -30px) rotateX(-10deg);
}
.leg_right_two {
  transform: translate3d(50px, 125px, 30px) rotateX(-10deg);
}
.leg_right_three {
  transform: translate3d(50px, 125px, 90px) rotateX(-10deg);
}
.leg_left_one {
  transform: translate3d(-50px, 125px, -30px) rotateX(-10deg);
}
.leg_left_two {
  transform: translate3d(-50px, 125px, 30px) rotateX(-10deg);
}
.leg_left_three {
  transform: translate3d(-50px, 125px, 90px) rotateX(-10deg);
}
.wing {
  width: 300px;
  height: 200px;
}
.wing_left {
  background: var(--bee-wing) center / contain no-repeat;
  transform-origin: top right;
  transform: translate3d(-150px, -1px, 130px) rotateY(90deg) rotateX(90deg)
    scale3d(-1, 1, 1);
  animation: fly_left 120ms infinite linear;
}
.wing_right {
  background: var(--bee-wing) center / contain no-repeat;
  transform-origin: top left;
  transform: translate3d(150px, -1px, -65px) rotateY(90deg) rotateX(90deg)
    scale3d(-1, -1, 1);
  animation: fly_right 120ms infinite linear;
}

.stinger {
  width: 50px;
  height: 30px;
  background-color: #1d1d25;
  transform: translateZ(-160px) rotateY(90deg);
  position: absolute;
}
.cube {
  width: 400px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spin 10s linear infinite;
}
.cube_face {
  position: absolute;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: saturate(1.2);
  box-shadow: inset 0 0 70px 0px rgb(0 0 0 / 70%);
}
.cube_face.front {
  background: var(--cube-sides) center / cover no-repeat;
  transform: translateZ(150px);
}
.cube_face.back {
  background: var(--cube-sides) center / cover no-repeat;
  transform: translateZ(-150px) rotateZ(0deg);
}
.cube_face.right {
  background: var(--cube-sides) center / cover no-repeat;
  transform: translateX(-150px) rotateY(-90deg);
}
.cube_face.left {
  background: var(--cube-sides) center / cover no-repeat;
  transform: translateX(150px) rotateY(90deg);
}
.cube_face.top {
  background: var(--cube-top) center / cover no-repeat;
  transform: translateY(-150px) rotateX(90deg);
}
.cube_face.bottom {
  background: var(--cube-bottom) center / cover no-repeat;
  transform: translateY(150px) rotateX(-90deg);
}
.rose {
  width: 60px;
  height: 600px;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rose_part {
  position: absolute;
  width: 100px;
  height: 180px;
  filter: saturate(1.2);
}
.rose_first {
  background: var(--rose) center / contain no-repeat;
  transform: translateY(-240px);
}
.rose_second {
  background: var(--rose) center / contain no-repeat;
  transform: translateY(-240px) rotateY(90deg);
}
.ground {
  position: absolute;
  width: 1200px;
  height: 1200px;
  background: var(--cube-bottom);
  background-repeat: repeat;
  background-size: 400px;
  transform: translateY(150px) rotateX(90deg);
}
.ground::after {
  content: "";
  width: 100%;
  height: 100%;
  background: radial-gradient(
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    #040008 70%,
    #000 100%
  );
  display: block;
}
.grass {
  width: 60px;
  height: 600px;
  position: absolute;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate3d(200px, 0, -100px);
}
.grass::after {
  content: "";
  width: 300px;
  height: 300px;
  background: radial-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: block;
  position: absolute;
  transform: translate3d(0, 150px, -300px) rotateX(90deg);
}
.grass_part {
  width: 200px;
  height: 300px;
  position: absolute;
}

.grass_first {
  background: var(--grass) center / contain no-repeat;
  transform: translateZ(-300px) translateY(40px);
}
.grass_second {
  background: var(--grass) center / contain no-repeat;
  transform: translateZ(-300px) translateY(40px) rotateY(90deg);
}
#author {
  width: 100%;
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 35px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
}

#author span {
  font-size: 10px;
  margin-left: 20px;
  color: inherit;
  letter-spacing: 4px;
}

#author h1 {
  font-size: 25px;
}
@keyframes spin {
  0% {
    transform: translateY(-100px) rotateX(0deg) rotateY(0deg)
      scale3d(var(--cube-scale), var(--cube-scale), var(--cube-scale));
  }
  50% {
    transform: translateY(-100px) rotateX(0deg) rotateY(180deg)
      scale3d(var(--cube-scale), var(--cube-scale), var(--cube-scale));
  }
  100% {
    transform: translateY(-100px) rotateX(0deg) rotateY(360deg)
      scale3d(var(--cube-scale), var(--cube-scale), var(--cube-scale));
  }
}
@keyframes shake {
  0% {
    transform-origin: top;
    transform: translateY(100px) rotateY(0) rotateX(0)
      scale3d(var(--bee-scale), var(--bee-scale), var(--bee-scale));
  }
  50% {
    transform-origin: top;
    transform: translateY(120px) rotateY(180deg) rotateX(10deg)
      scale3d(var(--bee-scale), var(--bee-scale), var(--bee-scale));
  }
  100% {
    transform-origin: top;
    transform: translateY(100px) rotateY(360deg) rotateX(0deg)
      scale3d(var(--bee-scale), var(--bee-scale), var(--bee-scale));
  }
}
@keyframes fly_right {
  0% {
    transform-origin: top left;
    transform: translate3d(150px, -1px, -65px) rotateY(90deg) rotateX(90deg)
      scale3d(-1, -1, 1);
  }
  50% {
    transform-origin: top left;
    transform: translate3d(150px, -1px, -65px) rotateY(90deg) rotateX(30deg)
      scale3d(-1, -1, 1);
  }
  100% {
    transform-origin: top left;
    transform: translate3d(150px, -1px, -65px) rotateY(90deg) rotateX(90deg)
      scale3d(-1, -1, 1);
  }
}
@keyframes fly_left {
  0% {
    transform-origin: top right;
    transform: translate3d(-150px, -1px, 130px) rotateY(90deg) rotateX(90deg)
      scale3d(-1, 1, 1);
  }
  50% {
    transform-origin: top right;
    transform: translate3d(-150px, -1px, 130px) rotateY(90deg) rotateX(160deg)
      scale3d(-1, 1, 1);
  }
  100% {
    transform-origin: top right;
    transform: translate3d(-150px, -1px, 130px) rotateY(90deg) rotateX(90deg)
      scale3d(-1, 1, 1);
  }
}

@media (max-height: 570px) {
  .bee {
    bottom: -140px;
  }
  .cube {
    bottom: -100px;
  }
}

              
            
!

JS

              
                const windowHeight = window.innerHeight;
const adjust = () => {
  windowHeight = window.innerHeight;
  if (windowHeight < 800) {
    document.documentElement.style.setProperty("--bee-scale", 0.2);
    document.documentElement.style.setProperty("--cube-scale", 0.2);
  } else {
    document.documentElement.style.setProperty("--bee-scale", 0.5);
    document.documentElement.style.setProperty("--cube-scale", 0.5);
  }
};
window.addEventListener("resize", adjust);
adjust();

              
            
!
999px

Console