See Code |
Go Back |
---|
CSS Code Below
@keyframes vibrate {
0%{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
25%{
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
50%{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
75%{
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
100%{
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
}
.blueshakebutton {
margin-top: 1em;
width: 30%;
padding-top: 0.3em;
padding-bottom: 0.3em;
background-color: #cccccc;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border: 4px solid #4db8ff;
-webkit-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
transition-duration: 0.7s;
}
.blueshakebutton:hover {
background-color: #4db8ff;
animation: vibrate 1s infinite;
}
Feel free to copy the blue shake animation!