Nine tuned animations — fades, slides, scale, bounce, pulse, spin, shake — with duration, delay, easing and repeat under your control and a Replay button so you judge the motion, not imagine it. The copy is the @keyframes plus the class, reduced-motion guard included.
The CSS
@keyframes slide_up {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-slide-up {
animation: slide_up 600ms ease-out both;
}
@media (prefers-reduced-motion: reduce) {
.animate-slide-up {
animation: none;
}
}Set what you want and the result appears as you go. Nothing needs uploading because there is nothing to upload — you are describing what to make, not sending us anything.
Your browser does all the work locally, using your own operating system where randomness is involved. Nothing is requested from a server, so nobody else has a copy of what you made.
One press puts it on your clipboard, ready to paste where you need it. There is no file to download — the result is text, not a document. Nothing is kept — refresh the page and it’s gone, so take what you need before you leave.