28 lines
637 B
CSS
28 lines
637 B
CSS
@keyframes elementor-animation-wobble-to-top-right {
|
|
16.65% {
|
|
transform: translate(8px, -8px);
|
|
}
|
|
33.3% {
|
|
transform: translate(-6px, 6px);
|
|
}
|
|
49.95% {
|
|
transform: translate(4px, -4px);
|
|
}
|
|
66.6% {
|
|
transform: translate(-2px, 2px);
|
|
}
|
|
83.25% {
|
|
transform: translate(1px, -1px);
|
|
}
|
|
100% {
|
|
transform: translate(0, 0);
|
|
}
|
|
}
|
|
.elementor-animation-wobble-to-top-right:active,
|
|
.elementor-animation-wobble-to-top-right:focus,
|
|
.elementor-animation-wobble-to-top-right:hover {
|
|
animation-name: elementor-animation-wobble-to-top-right;
|
|
animation-duration: 1s;
|
|
animation-timing-function: ease-in-out;
|
|
animation-iteration-count: 1;
|
|
}
|