用于控制元素的背景图像应如何与背景色融合的实用程序。
使用bg-blend-{mode}
实用程序来控制元素的背景图像应如何混合其背景颜色。
<div class="bg-blend-multiply ...">
<!-- ... -->
</div>
要在特定的断点处控制background-blend-mode属性,请在任何现有的background-blend-mode实用程序中添加一个{screen}:前缀。例如,使用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
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ backgroundBlendMode: false,
}
}