Metallic Shine Label - 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>Metallic Shine Label</title> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #333; font-family: 'Poppins', sans-serif; margin: 0; } .shine-label { position: relative; padding: 15px 30px; font-size: 1.2rem; font-weight: 600; color: #fff; background: linear-gradient(135deg, #b8c6db, #f5f7fa); background-clip: text; text-fill-color: transparent; border: 2px solid #b8c6db; border-radius: 10px; overflow: hidden; animation: shine 3s infinite; } .shine-label::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent); animation: move 3s infinite; } @keyframes move { 0% { transform: translate(0, 0); } 100% { transform: translate(50%, 50%); } } @keyframes shine { 0%, 100% { text-shadow: 0 0 5px #b8c6db, 0 0 10px #b8c6db, 0 0 20px #f5f7fa; } 50% { text-shadow: 0 0 10px #b8c6db, 0 0 20px #b8c6db, 0 0 30px #f5f7fa; } } </style> </head> <body> <div class="shine-label">Metallic Shine Label</div> </body> </html>