1. 滤镜
  2. 亮度

滤镜

过滤器:亮度()

用于将亮度滤镜应用于元素的工具类。

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

示例

基本示例

使用像 brightness-50brightness-100 的工具类来控制元素的亮度:

brightness-50

brightness-100

brightness-125

brightness-200

<img class="brightness-50 ..." src="/img/mountains.jpg" />
<img class="brightness-100 ..." src="/img/mountains.jpg" />
<img class="brightness-125 ..." src="/img/mountains.jpg" />
<img class="brightness-200 ..." src="/img/mountains.jpg" />

使用自定义值

Use the brightness-[<value>] syntax to set the brightness based on a completely custom value:

<img class="brightness-[1.75] ..." src="/img/mountains.jpg" />

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

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

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

响应式设计

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

<img class="brightness-110 md:brightness-150 ..." src="/img/mountains.jpg" />

Learn more about using variants in the variants documentation.