变换
使用变换平移元素的实用程序。
使用 translate-x-*
和 translate-y-*
实用程序来平移元素。
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 允许您使用变体修饰符有条件地在不同状态下应用实用程序类。例如,使用 hover:translate-y-12
来仅 在 hover应用 translate-y-12
.
<div class="hover:translate-y-12">
<!-- ... -->
</div>
详细了解, 请参考 Hover, Focus, & Other States 文档.
您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、首选减少运动等。例如, 使用 md:translate-y-12
来应用 translate-y-12
程序,适用于中等屏幕尺寸及以上。
<div class="md:translate-y-12">
<!-- ... -->
</div>
默认情况下,Tailwind 提供与 default spacing scale 匹配的固定值 translate
实用程序,以及相对于元素大小的 50% 和 100% 变化。您可以通过在 tailwind.config.js
文件中编辑 theme.spacing
或 theme.extend.spacing
来自定义间距比例。
module.exports = {
theme: {
extend: {
spacing: {
'4.25': '17rem',
}
}
}
}
或者,您可以通过编辑 tailwind.config.js
文件中的 theme.translate
或 theme.extend.translate
来仅自定义平移比例。
module.exports = {
theme: {
extend: {
translate: {
'4.25': '17rem',
}
}
}
}
在 theme customization 文档中了解有关自定义默认主题的更多信息。
如果您需要使用一次性的 translate值,而该值没有必要包含在主题中,请使用方括号动态生成属性,使用任意值。
<div class="translate-y-[17rem]">
<!-- ... -->
</div>
进一步了解,请参考 任意值 文档.