Swiftly and silently
Show a tooltipRises 14% from below at 98% scale while fading in.
- Duration
- 0.3s
- Repeats
- No
- Easing
- cubic-bezier(.2,.8,.2,1)
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-su {
0% { transform: translate(0%, 14%) scale(0.98, 0.98); opacity: 0; }
100% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
}
.onoma-su {
animation: onoma-su 0.3s cubic-bezier(.2,.8,.2,1) both;
}
/* Reduced motion: only fade in */
@keyframes onoma-su-fade { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
.onoma-su { animation: onoma-su-fade 0.2s ease-out both; }
}