Rotating Pentagon - 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>Rotating Pentagon</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #0f2027; overflow: hidden; } .shape { width: 100px; height: 100px; background: #d3e0ea; clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); animation: rotate 4s infinite linear; } @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> </head> <body> <div class="shape"></div> </body> </html>