mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
3bc8c5ea49
--HG-- extra : rebase_source : c87d145abea750cf0d8b02f0ea387ec9148e6be1
33 lines
487 B
HTML
33 lines
487 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
margin-top:100px;
|
|
opacity:0.5;
|
|
}
|
|
|
|
.container {
|
|
width: 120px;
|
|
height: 120px;
|
|
perspective: 100px;
|
|
transform-style: preserve-3d;
|
|
}
|
|
|
|
.bottom {
|
|
width: 120px;
|
|
height: 120px;
|
|
position: absolute;
|
|
background-color: rgba(255,0,255,1);
|
|
transform: translateZ(60px) translateY(120px) rotateX(-90deg);
|
|
transform-origin: left top;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="bottom"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|