WEBLEB
Home
Editor
Login
Pro
English
English
Français
Español
Português
Deutsch
Italiano
हिंदी
HTML Button Animation Example
474
gmskabirwala
Open In Editor
Publish Your Code
Recommended
5 August 2023
Animated CSS Button
7 November 2024
toggle with light animation
4 July 2025
ORABANC Bank HTML Template: User Portals & CSS
HTML
Copy
Button Animation
Submit
CSS
Copy
body{ display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } button{ color:blue; border:none; height:40px; width: 100px; border-radius:7px; cursor: pointer; } button:hover{ color:white; background-color: #3b82f6; box-shadow: 0 0 0 5px #3b83f65f; }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */