1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
matomo-injector/css/animate.css

30 lines
480 B
CSS
Raw Normal View History

2014-06-17 10:44:29 +02:00
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
}
.animated {
-webkit-animation-duration: 1s;
-webkit-animation-fill-mode: both;
}