滤镜
用于将深褐色滤镜应用于元素的工具类。
| Class | Styles |
|---|---|
sepia | filter: sepia(100%); |
sepia-<number> | filter: sepia(<number>%); |
sepia-(<custom-property>) | filter: sepia(var(<custom-property>)); |
sepia-[<value>] | filter: sepia(<value>); |
使用sepia和sepia-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 深褐色程度 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.