Professional Wave 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>Professional Wave Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #e0e0e0; margin: 0; } .wave-button { padding: 20px 40px; font-size: 18px; font-weight: bold; color: #fff; background: #c0392b; border: none; border-radius: 30px; cursor: pointer; outline: none; transition: all 0.3s ease; } .wave-button:hover { animation: wave 0.5s infinite; } @keyframes wave { 0% { transform: translateX(0); } 25% { transform: translateX(-10px); } 50% { transform: translateX(10px); } 75% { transform: translateX(-10px); } 100% { transform: translateX(0); } } .wave-button span { position: relative; z-index: 1; } </style> </head> <body> <button type="button" class="wave-button"> <span>Professional Wave</span> </button> </body> </html>