5.3K
CSS 3D animate button Using HTML and CSS
Hello, friends welcome to you in techmidpoint tutorial. In this tutorial, I am going to make a CSS 3D animate button using HTML and CSS. When you move the mouse over the 3D button the button transform and rotate 30deg. Let’s see the example
HTML
<!DOCTYPE html>
<html>
<head>
<title> 3D Design Button</title>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<link rel ="stylesheet" href="style.css">
</head>
<body>
<a href="#">Button</a>
</body>
</html>
CSS
body{
margin: 0;
padding: 0;
justify-content: center;
align-items: center;
display: flex;
min-height: 100vh;
background: #00293c;
font-family: 'Lobster', cursive;
}
a{
text-decoration: none;
text-align: center;
display: block;
width:200px;
padding:10px;
background: #fff;
text-transform: uppercase;
font-weight: bold;
color:#000;
font-size:3em;
transform: rotate(0deg)skewX(0deg)translate(0,0);
transition: 0.5s;
box-shadow: -20px 20px 10px rgba(0,0,0,0.5);
}
a:before{
content: '';
position: absolute;
top:10px;
left:-20px;
height: 100%;
width:20px;
background: #b1b1b1;
transform: 0.5s;
transform: rotate(0deg)skewY(-45deg);
}
a:after{
content: '';
position: absolute;
bottom:-20px;
left:-10px;
height: 20px;
width:100%;
background: #b1b1b1;
transform: 0.5s;
transform: rotate(0deg)skewX(-45deg);
}
a:hover{
transform:rotate(-30deg) skew(25deg) translate(20px,-15px);
box-shadow: -50px 50px 50px rgba(0,0,0,0.5);
background: #dd4b39;
color:#fff;
}
a:hover:before{
background: #b33a2b;
}
a:hover:after{
background: #e66a5a;
}
For More Tutorials Please Click Here
1 comment
Great content! Keep up the good work!