Tailwind CSS Background Blend Mode
Background Blend Mode
用于控制元素的背景图像应如何与其背景颜色混合的实用程序。
Class
|
Properties
|
---|---|
bg-blend-normal | background-blend-mode: normal; |
bg-blend-multiply | background-blend-mode: multiply; |
bg-blend-screen | background-blend-mode: screen; |
bg-blend-overlay | background-blend-mode: overlay; |
bg-blend-darken | background-blend-mode: darken; |
bg-blend-lighten | background-blend-mode: lighten; |
bg-blend-color-dodge | background-blend-mode: color-dodge; |
bg-blend-color-burn | background-blend-mode: color-burn; |
bg-blend-hard-light | background-blend-mode: hard-light; |
bg-blend-soft-light | background-blend-mode: soft-light; |
bg-blend-difference | background-blend-mode: difference; |
bg-blend-exclusion | background-blend-mode: exclusion; |
bg-blend-hue | background-blend-mode: hue; |
bg-blend-saturation | background-blend-mode: saturation; |
bg-blend-color | background-blend-mode: color; |
bg-blend-luminosity | background-blend-mode: luminosity; |
用法
使用 bg-blend-{mode}
实用程序来控制元素的背景图像应如何混合其背景颜色。
<div class="bg-blend-multiply ...">
<!-- ... -->
</div>
响应式
要在特定断点处控制 background-blend-mode 属性,请将 {screen}:
前缀添加到任何现有的 background-blend-mode 实用程序。例如,使用 md:bg-blend-darken
将 bg-blend-darken
实用程序仅应用于中等大小及以上的屏幕。
<div class="bg-blend-lighten md:bg-blend-darken ...">
<!-- ... -->
</div>
有关 Tailwind 响应式设计功能的更多信息,请查看响应式设计文档。
自定义
变体
默认情况下, 针对 background-blend-mode 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 backgroundBlendMode
属性来控制为 background-blend-mode 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
backgroundBlendMode: ['hover', 'focus'],
}
}
}
禁用
如果您不打算在您的项目中使用 background-blend-mode 功能,您可以通过在配置文件的 corePlugins
部分将 backgroundBlendMode
属性设置为 false
来完全禁用它们:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
backgroundBlendMode: false,
}
}
更多建议: