OnomaUI

saa motion

saa has 2 kinds of motion.

さーっ2 motionsOfficial

Motion by meaning

Sweep across in one go

Sweep in a panel

Slides in from 180% to the left and stops.

Duration
0.7s
Repeats
No
Easing
cubic-bezier(.2,.8,.2,1)
Animates
Position · Opacity translate opacity
Show CSS
@keyframes onoma-saa {
  0% { transform: translate(-180%, 0%); opacity: 0; }
  40% { transform: translate(-108%, 0%); opacity: 1; }
  100% { transform: translate(0%, 0%); opacity: 1; }
}

.onoma-saa {
  animation: onoma-saa 0.7s cubic-bezier(.2,.8,.2,1) both;
}

/* Reduced motion: only fade in */
@keyframes onoma-saa-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .onoma-saa { animation: onoma-saa-fade 0.2s ease-out both; }
}

Blood drains away

Pale out and vanish

Drifts 4% upward as it fades out.

Duration
0.9s
Repeats
No
Easing
ease-in
Animates
Position · Opacity translate opacity
Show CSS
@keyframes onoma-saa-2 {
  0% { transform: translate(0%, 0%); opacity: 1; }
  100% { transform: translate(0%, -4%); opacity: 0; }
}

.onoma-saa-2 {
  animation: onoma-saa-2 0.9s ease-in both;
}

/* Reduced motion: only fade out */
@keyframes onoma-saa-2-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .onoma-saa-2 { animation: onoma-saa-2-fade 0.2s ease-out both; }
}

Compare with similar motions

Words for the same motion