În acest exemplu, am creat un cub tridimensional care se rotește în spațiu folosind doar HTML și CSS. 🔥 #CSS3D #WebDesign #HTMLCSS

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>3D Transforms Example</title>
<style>
body, html {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #28292B;
color: white;
}

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

.face {
position: absolute;
width: 200px;
height: 200px;
background-color: rgba(0, 0, 255, 0.5);
border: 2px solid #000;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
font-size: 24px;
color: white;
text-shadow: 1px 1px 2px black;
}

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

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

.left {
transform: rotateY(-90deg) translateZ(100px);
}

.right {
transform: rotateY(90deg) translateZ(100px);
}

.top {
transform: rotateX(90deg) translateZ(100px);
}

.bottom {
transform: rotateX(-90deg) translateZ(100px);
}

@keyframes rotateCube {
0% {
transform: rotateX(0deg) rotateY(0deg);
}
100% {
transform: rotateX(360deg) rotateY(360deg);
}
}
</style>
</head>
<body>
<h2>cub 3D: Doar cu HTML și CSS </h2>

<div class=”cube”>
<div class=”face front”>Front</div>
<div class=”face back”>Back</div>
<div class=”face left”>Left</div>
<div class=”face right”>Right</div>
<div class=”face top”>Top</div>
<div class=”face bottom”>Bottom</div>
</div>

</body>
</html>

Pune acest cod într-un Notepad și salvează-l cu extensia .html (heart.html), da dublu click și vezi în browser rezultatul.