1081185-1.html (487B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 body { 6 margin-top:100px; 7 opacity:0.5; 8 } 9 10 .container { 11 width: 120px; 12 height: 120px; 13 perspective: 100px; 14 transform-style: preserve-3d; 15 } 16 17 .bottom { 18 width: 120px; 19 height: 120px; 20 position: absolute; 21 background-color: rgba(255,0,255,1); 22 transform: translateZ(60px) translateY(120px) rotateX(-90deg); 23 transform-origin: left top; 24 } 25 </style> 26 </head> 27 <body> 28 <div class="container"> 29 <div class="bottom"></div> 30 </div> 31 </body> 32 </html>