Multiplayer Piano Community Forum
    • Categories
    • Unread
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Admin
    • Register
    • Login

    giving away my codes part 1

    Scheduled Pinned Locked Moved Blog
    1 Posts 1 Posters 16 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Rēsh-1R
      Rēsh-1 🍞
      last edited by

      <!DOCTYPE html>
      <html>
      <head>
      <div class=“container”>
      <div class=“cube”>
      <div class=“face left”>hi</div>
      <div class=“face right”>Right</div>
      <div class=“face front”>Front</div>
      <div class=“face back”>Back</div>
      </div>
      </div>
      <style>
      .container {
      width: 200px;
      height: 200px;
      perspective: 500px;
      margin: 100px;
      }

      @keyframes turn {
      from { transform: rotate3d(0, 0, 0, 0); }
      to { transform: rotate3d(0, 1, 0, 360deg); }
      }

      .cube {
      position: relative;
      width: 200px;
      height: 200px;
      transform-style: preserve-3d;
      animation: turn 5s linear infinite;
      }

      .face {
      width: 200px;
      height: 200px;
      background: skyblue;
      border: 2px solid black;
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
      font-size: 2rem;
      outline: 2px solid rgba(233, 240, 241, 0.75);
      transition: outline 0.65s ease 0s;
      opacity: 0.6;
      transition: opacity 0.65s ease 0s;
      }

      .cube:hover {
      animation-play-state:paused;
      }

      .face:hover {
      outline: 7px solid rgba(223, 245, 236, 0.85);
      opacity: 1;
      }

      .front {
      transform: translateZ(125px);
      }

      .back {
      transform: translateZ(-125px) rotateY(180deg);
      }

      .left {
      transform: translateX(-125px) rotateY(-90deg);
      }

      .right {
      transform: translateX(125px) rotateY(90deg);
      }

      .top {
      transform: translateY(-100px) rotateX(90deg);
      display: none;
      }

      .bottom {
      transform: translateY(100px) rotateX(-90deg);
      display: none;
      }

      body {
      background: black;
      }

      p {
      color: white;
      }

      </style>
      <body>
      <p>
      chicken
      </p>
      </body>
      </html>

      o <-- yaser, help 'em out

      1 Reply Last reply Reply Quote 0
      • First post
        Last post
      vei.cosV BlakeB Siloxa922S HoodH

      5

      Online

      1.0k

      Users

      64.2k

      Topics

      559.8k

      Posts
      Powered by NodeBB | Contributors