Переходы и анимация
Утилиты для управления плавностью переходов CSS.
Для управления кривой плавности элемента используйте утилиты ease-{timing}
.
Hover each button to see the expected behaviour
ease-in
ease-out
ease-in-out
<button class="ease-in duration-300 ...">Кнопка A</button>
<button class="ease-out duration-300 ...">Кнопка B</button>
<button class="ease-in-out duration-300 ...">Кнопка C</button>
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:ease-in
to only apply the ease-in
utility on hover.
<div class="transition duration-150 ease-out hover:ease-in">
<!-- ... -->
</div>
For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:ease-in
to apply the ease-in
utility at only medium screen sizes and above.
<div class="transition duration-150 ease-out md:ease-in">
<!-- ... -->
</div>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
По умолчанию Tailwind предоставляет четыре универсальные утилиты с функцией синхронизации перехода. Вы можете настроить эти значения, отредактировав theme.transitionTimingFunction
или theme.extend.transitionTimingFunction
в вашем файле tailwind.config.js
.
module.exports = {
theme: {
extend: {
transitionTimingFunction: {
'in-expo': 'cubic-bezier(0.95, 0.05, 0.795, 0.035)',
'out-expo': 'cubic-bezier(0.19, 1, 0.22, 1)',
}
}
}
}
Дополнительные сведения о настройке темы по умолчанию смотрите в документации настройка темы.
If you need to use a one-off transition-timing-function
value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.
<div class="ease-[cubic-bezier(0.95,0.05,0.795,0.035)]">
<!-- ... -->
</div>
Learn more about arbitrary value support in the arbitrary values documentation.