personal-site/templates/cssindex.html

46 lines
1017 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #f0f0f0;
}
.door-container {
width: 200px;
height: 200px;
perspective: 1000px;
}
.door {
width: 100%;
height: 100%;
background: red;
display: flex;
align-items: center;
justify-content: center;
color: white;
transform-style: preserve-3d;
transition: transform 0.5s ease;
transform-origin: left;
cursor: pointer;
}
.door-container:hover .door {
transform: rotateY(-90deg);
box-shadow: 5px 5px 15px rgba(0,0,0,0.5)
}
</style>
</head>
<body>
<div class="door-container">
<div class="door">Hello</div>
</div>
</body>
</html>