You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
473 B
31 lines
473 B
5 years ago
|
@keyframes headShake {
|
||
|
0% {
|
||
|
transform: translateX(0);
|
||
|
}
|
||
|
|
||
|
6.5% {
|
||
|
transform: translateX(-6px) rotateY(-9deg);
|
||
|
}
|
||
|
|
||
|
18.5% {
|
||
|
transform: translateX(5px) rotateY(7deg);
|
||
|
}
|
||
|
|
||
|
31.5% {
|
||
|
transform: translateX(-3px) rotateY(-5deg);
|
||
|
}
|
||
|
|
||
|
43.5% {
|
||
|
transform: translateX(2px) rotateY(3deg);
|
||
|
}
|
||
|
|
||
|
50% {
|
||
|
transform: translateX(0);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.headShake {
|
||
|
animation-timing-function: ease-in-out;
|
||
|
animation-name: headShake;
|
||
|
}
|