OnomaUI

ばんばん の動き

「何度も打ちつける」を表す動きです。

banban1種類公式

見本

何度も打ちつける

勢いのある催促

15%持ち上がっては、どしんと着いて25%つぶれるのをくり返す。

時間
0.5s
くり返し
する
速さの変化
ease-in-out
動かすもの
位置・大きさ translate scale
CSS を見る
@keyframes onoma-banban {
  0% { transform: translate(0%, 0%) scale(1, 1); animation-timing-function: ease-out; }
  25% { transform: translate(0%, -15%) scale(1, 1); animation-timing-function: cubic-bezier(.6,0,1,.6); }
  42% { transform: translate(0%, 0%) scale(1.25, 0.75); animation-timing-function: ease-out; }
  60% { transform: translate(0%, 0%) scale(1, 1); }
  100% { transform: translate(0%, 0%) scale(1, 1); }
}

.onoma-banban {
  animation: onoma-banban 0.5s ease-in-out infinite both;
  transform-origin: 50% 100%;
}

/* 動きを減らす設定の人には、動かさない */
@media (prefers-reduced-motion: reduce) {
  .onoma-banban { animation: none; }
}

近い動きと見比べる