1. 滤镜
  2. 复古

滤镜

过滤器:sepia()

用于将深褐色滤镜应用于元素的工具。

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

示例

基本示例

使用 sepiasepia-50 等工具来控制应用于元素的深褐色效果:

sepia-0

sepia-50

sepia

<img class="sepia-0" src="/img/mountains.jpg" />
<img class="sepia-50" src="/img/mountains.jpg" />
<img class="sepia" src="/img/mountains.jpg" />

使用自定义值

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

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

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

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

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

响应式设计

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

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

Learn more about using variants in the variants documentation.