OnomaUI

gara motion

gara has 2 kinds of motion.

がらっ2 motionsOfficial

Motion by meaning

Slide open briskly

Pull out a panel

Slides in from 180% to the left and stops.

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

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

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

Change completely

Switch views

Flips open 180° around its left edge.

Duration
0.5s
Repeats
No
Easing
ease-in-out
Animates
3D turn rotateY
Show CSS
@keyframes onoma-gara-2 {
  0% { transform: perspective(400px) rotateY(0deg); }
  100% { transform: perspective(400px) rotateY(-180deg); }
}

.onoma-gara-2 {
  animation: onoma-gara-2 0.5s ease-in-out both;
  transform-origin: 0% 50%;
}

/* Reduced motion: no motion */
@media (prefers-reduced-motion: reduce) {
  .onoma-gara-2 { animation: none; }
}

Compare with similar motions

Words for the same motion