Преобразования
Утилиты для перевода элементов с трансформацией.
Используйте утилиты translate-x-{amount}
и translate-y-{amount}
для перевода элемента.
translate-y-6
-translate-y-6
translate-x-6
<img class="translate-y-6 ...">
<img class="-translate-y-6 ...">
<img class="translate-x-6 ...">
Чтобы использовать отрицательное значение перевода, поставьте перед именем класса дефис, чтобы преобразовать его в отрицательное значение.
<img class="-translate-y-6 ...">
To remove all of the transforms on an element at once, use the transform-none
utility:
<div class="scale-75 translate-x-4 skew-y-3 md:transform-none">
<!-- ... -->
</div>
This can be useful when you want to remove transforms conditionally, such as on hover or at a particular breakpoint.
If your transition performs better when rendered by the GPU instead of the CPU, you can force hardware acceleration by adding the transform-gpu
utility:
<div class="translate-y-6 transform-gpu">
<!-- ... -->
</div>
Use transform-cpu
to force things back to the CPU if you need to undo this conditionally.
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:translate-y-12
to only apply the translate-y-12
utility on hover.
<div class="hover:translate-y-12">
<!-- ... -->
</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:translate-y-12
to apply the translate-y-12
utility at only medium screen sizes and above.
<div class="md:translate-y-12">
<!-- ... -->
</div>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
По умолчанию Tailwind предоставляет утилиты translate
с фиксированным значением, которые соответствуют шкале интервалов по умолчанию, а также 50% и 100% вариации для перевода относительно размера элемента.. Вы можете настроить масштаб интервалов, отредактировав theme.spacing
или theme.extend.spacing
в вашем файле tailwind.config.js
.
module.exports = {
theme: {
extend: {
spacing: {
'4.25': '17rem',
}
}
}
}
Кроме того, вы можете настроить только масштаб перевода, отредактировав theme.translate
или theme.extend.translate
в вашем файле tailwind.config.js
.
module.exports = {
theme: {
extend: {
translate: {
'4.25': '17rem',
}
}
}
}
Дополнительные сведения о настройке темы по умолчанию смотрите в документации настройка темы.
If you need to use a one-off translate
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="translate-y-[17rem]">
<!-- ... -->
</div>
Learn more about arbitrary value support in the arbitrary values documentation.