The Best CSS Button Hover Effect You Can Use Too
सबसे अच्छा सीएसएस बटन होवर प्रभाव जिसका आप उपयोग कर सकते हैं
With the help of this button animation we can create a very good looking button. which helps us to improve the design of our websites.
इस बटन एनिमेशन की मदद से हम एक बहुत अच्छा दिखने वाला बटन बना सकते हैं। जो हमारी वेबसाइटों के डिजाइन को बेहतर बनाने में हमारी मदद करता है।
HTML or CSS Coding:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Animated CSS3 Buttons - Designify.me</title>
<style>
/* Global Button Styles */
a{
width:250px;
margin: 30px auto 0;
padding: 14px 15px;
font-size:14px;
font-weight: bold;
text-align: center;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
letter-spacing: .08em;
border-radius: 0;
color: #000;
cursor: pointer;
display: block;
position: relative;
border: 2px solid #F7CA18;
}
a:before {
display: block;
position: absolute;
top: 0px;
right: 0px;
height: 100%;
width: 0px;
z-index: -1;
content: '';
color: #000 !important;
background: #F7CA18;
transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}
a:hover:before {
left: 0%;
right: auto;
width: 100%;
}
</style>
</head>
<body>
<div> <a href="#">Register</a> </div>
</body>
</html>
Please do not entering spam link in the comment box ConversionConversion EmoticonEmoticon