1. 转换
  2. 倾斜

Quick reference

Class
Properties
skew-x-0transform: skewX(0deg);
skew-y-0transform: skewY(0deg);
skew-x-1transform: skewX(1deg);
skew-y-1transform: skewY(1deg);
skew-x-2transform: skewX(2deg);
skew-y-2transform: skewY(2deg);
skew-x-3transform: skewX(3deg);
skew-y-3transform: skewY(3deg);
skew-x-6transform: skewX(6deg);
skew-y-6transform: skewY(6deg);
skew-x-12transform: skewX(12deg);
skew-y-12transform: skewY(12deg);

基本用法

¥Basic usage

倾斜元素

¥Skewing an element

使用 skew-x-*skew-y-* 工具倾斜元素。

¥Use the skew-x-* and skew-y-* utilities to skew an element.

skew-y-0

skew-y-3

skew-y-6

skew-y-12

<img class="skew-y-0 ...">
<img class="skew-y-3 ...">
<img class="skew-y-6 ...">
<img class="skew-y-12 ...">

使用负值

¥Using negative values

要使用负偏斜值,请在类名前加上破折号以将其转换为负值。

¥To use a negative skew value, prefix the class name with a dash to convert it to a negative value.

<img class="-skew-y-6 ...">

删除转换

¥Removing transforms

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.

硬件加速

¥Hardware acceleration

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="skew-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:skew-y-12 to only apply the skew-y-12 utility on hover.

<div class="hover:skew-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:skew-y-12 to apply the skew-y-12 utility at only medium screen sizes and above.

<div class="md:skew-y-12">
  <!-- ... -->
</div>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.


使用自定义值

¥Using custom values

自定义主题

¥Customizing your theme

默认情况下,Tailwind 包含一些通用 skew 工具。你可以通过编辑 tailwind.config.js 文件中的 theme.skewtheme.extend.skew 来自定义这些值。

¥By default, Tailwind includes a handful of general purpose skew utilities. You can customize these values by editing theme.skew or theme.extend.skew in your tailwind.config.js file.

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      skew: {
        '17': '17deg',
      }
    }
  }
}

主题定制 文档中了解有关自定义默认主题的更多信息。

¥Learn more about customizing the default theme in the theme customization documentation.

任意值

¥Arbitrary values

If you need to use a one-off skew 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="skew-y-[17deg]">
  <!-- ... -->
</div>

Learn more about arbitrary value support in the arbitrary values documentation.