← Каталог
CSS-анимации — готовые эффекты — Обязательный каркас
Фрагмент из «CSS-анимации — готовые эффекты»: Обязательный каркас.
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CSS-анимация</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
body {
margin: 0;
min-height: 100dvh;
padding: 1.5rem;
font-family: system-ui, sans-serif;
line-height: 1.5;
background: #f8fafc;
color: #1e293b;
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
</style>
</head>
<body>
<!-- сюда разметка и стили эффекта -->
</body>
</html> <!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CSS-анимация</title>
<style>
*, *::before, *::after { box-sizing: border-box; }
body {
margin: 0;
min-height: 100dvh;
padding: 1.5rem;
font-family: system-ui, sans-serif;
line-height: 1.5;
background: #f8fafc;
color: #1e293b;
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
</style>
</head>
<body>
<!-- сюда разметка и стили эффекта -->
</body>
</html>