Skip to content

Instantly share code, notes, and snippets.

@Eriyes
Eriyes / animations.css
Created December 12, 2025 19:05
telegra
/* Базовые анимации */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeOut {
from { opacity: 1; }
to { opacity: 0; }
}