#aa4 — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #aa4, aggregated by home.social.
-
Create a throbber with CSS and animations. Here it is for a disabled input field:
@keyframes SearchControlWait {
from {
background-position: 30%;
}
to {
background-position: 70%;
}
}input[disabled] {
background-image: radial-gradient(#aa4 20%, white 40%);
background-size: 2cap 2cap;
background-repeat: no-repeat;
animation: SearchControlWait 1200ms linear infinite 0s alternate;
}In action: https://harald.codeberg.page/Codeschnipselnotizen/html-et-al/css-throbber.html
-
Create a throbber with CSS and animations. Here it is for a disabled input field:
@keyframes SearchControlWait {
from {
background-position: 30%;
}
to {
background-position: 70%;
}
}input[disabled] {
background-image: radial-gradient(#aa4 20%, white 40%);
background-size: 2cap 2cap;
background-repeat: no-repeat;
animation: SearchControlWait 1200ms linear infinite 0s alternate;
}In action: https://harald.codeberg.page/Codeschnipselnotizen/html-et-al/css-throbber.html