1. 过滤器
  2. 色相旋转

Quick reference

Class
Properties
hue-rotate-0filter: hue-rotate(0deg);
hue-rotate-15filter: hue-rotate(15deg);
hue-rotate-30filter: hue-rotate(30deg);
hue-rotate-60filter: hue-rotate(60deg);
hue-rotate-90filter: hue-rotate(90deg);
hue-rotate-180filter: hue-rotate(180deg);

基础用法

旋转元素的色调

使用 hue-rotate-* 实用程序来旋转元素的色调。

hue-rotate-15

hue-rotate-90

hue-rotate-180

-hue-rotate-60

<div class="hue-rotate-15 ...">
  <!-- ... -->
</div>
<div class="hue-rotate-90 ...">
  <!-- ... -->
</div>
<div class="hue-rotate-180 ...">
  <!-- ... -->
</div>
<div class="-hue-rotate-60 ...">
  <!-- ... -->
</div>

使用负值

要使用负的色调旋转值,请在类名前加上破折号以将其转换为负值。

<div class="-hue-rotate-60 ...">
  <!-- ... -->
</div>

移除过滤器

To remove all of the filters on an element at once, use the filter-none utility:

<div class="blur-md invert hue-rotate-180 md:filter-none">
  <!-- ... -->
</div>

This can be useful when you want to remove filters conditionally, such as on hover or at a particular breakpoint.


条件应用

悬停、聚焦和其他状态

Tailwind 允许您使用变体修饰符有条件地在不同状态下应用实用程序类。例如,使用 hover:hue-rotate-0 来仅 在 hover应用 hue-rotate-0.

<div class="hue-rotate-60 hover:hue-rotate-0">
  <!-- ... -->
</div>

详细了解, 请参考 Hover, Focus, & Other States 文档.

断点和媒体查询

您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、首选减少运动等。例如, 使用 md:hue-rotate-0 来应用 hue-rotate-0 程序,适用于中等屏幕尺寸及以上。

<div class="hue-rotate-60 md:hue-rotate-0">
  <!-- ... -->
</div>

进一步了解,请参考 响应式设计, 暗黑模式 媒体查询.


使用自定义值

定制你的主题

默认情况下,Tailwind 包含一些通用的 hue-rotate 实用程序。您可以通过编辑 tailwind.config.js 文件中的 theme.hueRotatetheme.extend.hueRotate 来自定义这些值。

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      hueRotate: {
        '-270': '-270deg',
        270: '270deg',
      }
    }
  }
}

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

任意值

如果您需要使用一次性的 hue-rotate值,而该值没有必要包含在主题中,请使用方括号动态生成属性,使用任意值。

<div class="hue-rotate-[270deg]">
  <!-- ... -->
</div>

进一步了解,请参考 任意值 文档.