Tailwind CSS Backdrop Contrast
Backdrop Contrast
将背景对比度过滤器应用于元素的实用程序。
Class
|
Properties
|
---|---|
backdrop-contrast-0 | --tw-backdrop-contrast: contrast(0); |
backdrop-contrast-50 | --tw-backdrop-contrast: contrast(.5); |
backdrop-contrast-75 | --tw-backdrop-contrast: contrast(.75); |
backdrop-contrast-100 | --tw-backdrop-contrast: contrast(1); |
backdrop-contrast-125 | --tw-backdrop-contrast: contrast(1.25); |
backdrop-contrast-150 | --tw-backdrop-contrast: contrast(1.5); |
backdrop-contrast-200 | --tw-backdrop-contrast: contrast(2); |
用法
使用 backdrop-contrast-{amount}
实用程序和 backdrop-filter
实用程序来控制元素的背景对比度。
<div class="backdrop-filter backdrop-contrast-125 ...">
<!-- ... -->
</div>
响应式
要在特定断点处控制元素的背景对比度,请在任何现有的背景对比度实用程序中添加 {screen}:
前缀。例如,使用 md:backdrop-contrast-150
仅在中等屏幕尺寸及以上尺寸应用 backdrop-contrast-150
实用程序。
<div class="backdrop-filter backdrop-contrast-110 md:backdrop-contrast-150 ...">
<!-- ... -->
</div>
有关 Tailwind 响应式设计功能的更多信息,请查看响应式设计文档。
自定义
您可以使用 tailwind.config.js
文件的 theme
部分中的 backgroundContrast
键自定义生成哪些 backdrop-contrast
实用程序。
// tailwind.config.js
module.exports = {
theme: {
extend: {
backdropContrast: {
25: '.25',
}
}
}
}
在主题自定义文档中了解有关自定义默认主题的更多信息。
Backdrop Contrast Scale
您可以在 Tailwind 配置中自定义 backdrop-contrast
过滤器的值。
// tailwind.config.js
module.exports = {
theme: {
backdropContrast: {
0: '0',
25: '.25',
50: '.5',
75: '.75',
100: '1',
125: '1.25',
150: '1.5',
200: '2',
}
}
}
变体
默认情况下, 针对 backdrop contrast 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 backdropContrast
属性来控制为 backdrop contrast 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
backdropContrast: ['hover', 'focus'],
}
}
}
禁用
如果您不打算在您的项目中使用 backdrop contrast 功能,您可以通过在配置文件的 corePlugins
部分将 backdropContrast
属性设置为 false
来完全禁用它们:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
backdropContrast: false,
}
}
更多建议: