WEBLEB
होम
संपादक
लॉग इन करें
Pro
हिंदी
English
Français
Español
Português
Deutsch
Italiano
हिंदी
होवर एनिमेटेड बटन पर
4447
alex
संपादक में खोलें
Video
अपना कोड प्रकाशित करें
अनुशंसित
18 August 2024
होवर और धुंधला प्रभाव वाली साइटों की गैलरी
7 August 2025
एनिमेटेड टेक्स्ट और आइकन के साथ स्टाइलिश CSS बटन
30 January 2025
बटन ग्रेडिएंट होवर
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) */