1. 滤镜
  2. 色相旋转

滤镜

过滤器:hue-rotate()

用于将 hue-rotate 过滤器应用于元素的工具类。

ClassStyles
hue-rotate-<number>
filter: hue-rotate(<number>deg);
-hue-rotate-<number>
filter: hue-rotate(calc(<number>deg * -1));
hue-rotate-(<custom-property>)
filter: hue-rotate(var(<custom-property>));
hue-rotate-[<value>]
filter: hue-rotate(<value>);

示例

基本示例

使用像 hue-rotate-90hue-rotate-180 的工具类按度数旋转元素的色相:

hue-rotate-15

hue-rotate-90

hue-rotate-180

hue-rotate-270

<img class="hue-rotate-15" src="/img/mountains.jpg" />
<img class="hue-rotate-90" src="/img/mountains.jpg" />
<img class="hue-rotate-180" src="/img/mountains.jpg" />
<img class="hue-rotate-270" src="/img/mountains.jpg" />

使用负值

使用像 -hue-rotate-15-hue-rotate-45 的工具类来设置负的色相旋转值:

-hue-rotate-15

-hue-rotate-45

-hue-rotate-90

<img class="-hue-rotate-15" src="/img/mountains.jpg" />
<img class="-hue-rotate-45" src="/img/mountains.jpg" />
<img class="-hue-rotate-90" src="/img/mountains.jpg" />

使用自定义值

Use the hue-rotate-[<value>] syntax to set the 色相旋转 based on a completely custom value:

<img class="hue-rotate-[3.142rad] ..." src="/img/mountains.jpg" />

For CSS variables, you can also use the hue-rotate-(<custom-property>) syntax:

<img class="hue-rotate-(--my-hue-rotate) ..." src="/img/mountains.jpg" />

This is just a shorthand for hue-rotate-[var(<custom-property>)] that adds the var() function for you automatically.

响应式设计

Prefix a filter: hue-rotate() utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<img class="hue-rotate-60 md:hue-rotate-0 ..." src="/img/mountains.jpg" />

Learn more about using variants in the variants documentation.