Vanish in a puff of smoke
Hide or leaveExpands to 160% and rises 10% as it fades away.
- Duration
- 0.7s
- Repeats
- No
- Easing
- ease-out
- Animates
- Position · Scale · Opacity translate scale opacity
Show CSS
@keyframes onoma-doron {
0% { transform: translate(0%, 0%) scale(1, 1); opacity: 1; }
100% { transform: translate(0%, -10%) scale(1.6, 1.6); opacity: 0; }
}
.onoma-doron {
animation: onoma-doron 0.7s ease-out both;
}
/* Reduced motion: only fade out */
@keyframes onoma-doron-fade { from { opacity: 1; } to { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
.onoma-doron { animation: onoma-doron-fade 0.2s ease-out both; }
}