1. 滤镜
  2. 反转

滤镜

滤镜: invert()

应用反转滤镜到元素的工具。

ClassStyles
invert
filter: invert(100%);
invert-<number>
filter: invert(<number>%);
invert-(<custom-property>)
filter: invert(var(<custom-property>))
invert-[<value>]
filter: invert(<value>);

示例

基本示例

使用像 invertinvert-20 这样的工具来控制元素的颜色反转:

invert-0

invert-20

invert

<img class="invert-0" src="/img/mountains.jpg" />
<img class="invert-20" src="/img/mountains.jpg" />
<img class="invert" src="/img/mountains.jpg" />

使用自定义值

Use the invert-[<value>] syntax to set the 颜色反转 based on a completely custom value:

<img class="invert-[.25] ..." src="/img/mountains.jpg" />

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

<img class="invert-(--my-inversion) ..." src="/img/mountains.jpg" />

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

响应式设计

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

<img class="invert md:invert-0 ..." src="/img/mountains.jpg" />

Learn more about using variants in the variants documentation.