Template:Textshake.css: Difference between revisions
From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search
No edit summary Tag: Manual revert |
|
| (2 intermediate revisions by 2 users not shown) | |
(No difference)
| |
Latest revision as of 02:08, 7 March 2026
.shaketext span {
display: inline-block;
animation: shakes 0.2s infinite;
}
@keyframes shakes {
0% {
transform: translate(1px, 1px);
}
25% {
transform: translate(0px, -2px);
}
50% {
transform: translate(-2px, 2px);
}
75% {
transform: translate(0px, -2px);
}
100% {
transform: translate(1px, 1px);
}
}