Glow Pulse Button - VexaX
Run Code
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>Glow Pulse Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #fff; margin: 0; } .glow-pulse-button { padding: 20px 40px; font-size: 18px; font-weight: bold; color: #fff; background: #3498db; border: none; border-radius: 30px; cursor: pointer; outline: none; box-shadow: 0 0 5px #3498db, 0 0 10px #3498db, 0 0 20px #3498db, 0 0 40px #3498db; animation: glow-pulse 1.5s infinite alternate; } @keyframes glow-pulse { 0% { box-shadow: 0 0 10px #3498db, 0 0 20px #3498db, 0 0 40px #3498db, 0 0 80px #3498db; } 100% { box-shadow: 0 0 20px #3498db, 0 0 40px #3498db, 0 0 80px #3498db, 0 0 160px #3498db; } } .glow-pulse-button span { position: relative; z-index: 1; } </style> </head> <body> <button type="button" class="glow-pulse-button"> <span>Glow Pulse</span> </button> </body> </html>