3d Cube Rotate Iframe - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>3D Cube Rotate Iframe</title> <style> body { font-family: 'Arial', sans-serif; background: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%); display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .iframe-container { perspective: 1000px; width: 80%; height: 70%; position: relative; } .iframe-cube { position: absolute; width: 100%; height: 100%; transform-style: preserve-3d; transform: rotateY(45deg); transition: transform 1s; } .iframe-face { position: absolute; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: rgba(255, 255, 255, 0.8); border: 1px solid #333; border-radius: 15px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); } .iframe-face:nth-child(1) { transform: rotateY(0deg) translateZ(50%); } .iframe-face:nth-child(2) { transform: rotateY(90deg) translateZ(50%); } .iframe-face:nth-child(3) { transform: rotateY(180deg) translateZ(50%); } .iframe-face:nth-child(4) { transform: rotateY(-90deg) translateZ(50%); } .iframe-face:nth-child(5) { transform: rotateX(90deg) translateZ(50%); } .iframe-face:nth-child(6) { transform: rotateX(-90deg) translateZ(50%); } iframe { width: 100%; height: 100%; border: none; border-radius: 15px; } </style> </head> <body> <div class="iframe-container"> <div class="iframe-cube"> <div class="iframe-face"><iframe src="https://www.example.com" title="Example Iframe"></iframe></div> <div class="iframe-face"><iframe src="https://www.example.com" title="Example Iframe"></iframe></div> <div class="iframe-face"><iframe src="https://www.example.com" title="Example Iframe"></iframe></div> <div class="iframe-face"><iframe src="https://www.example.com" title="Example Iframe"></iframe></div> <div class="iframe-face"><iframe src="https://www.example.com" title="Example Iframe"></iframe></div> <div class="iframe-face"><iframe src="https://www.example.com" title="Example Iframe"></iframe></div> </div> </div> </body> </html>