用于控制背景图片在滚动时的表现的功能类。
<div class="bg-fixed ..." style="background-image: url(...)"></div>
<div class="bg-local ..." style="background-image: url(...)"></div>
<div class="bg-scroll ..." style="background-image: url(...)"></div>
要控制元素在特定断点处的 background attachment,请在任何现有的 background attachment 功能类中添加 {screen}:
前缀。例如,使用 md:bg-fixed
来应用 bg-fixed
功能类,只适用于中等尺寸以上的屏幕。
<div class="bg-local md:bg-fixed ...">
<!-- ... -->
</div>
关于 Tailwind 的响应式设计功能的更多信息,请查看响应式设计文档。
默认情况下, 针对 background attachment 功能类,只生成 responsive 变体。
您可以通过修改您的 tailwind.config.js
文件中的 variants
部分中的 backgroundAttachment
属性来控制为 background attachment 功能生成哪些变体。
例如,这个配置也将生成 hover and focus 变体:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
+ backgroundAttachment: ['hover', 'focus'],
}
}
}
如果您不打算在您的项目中使用 background attachment 功能,您可以通过在配置文件的 corePlugins
部分将 backgroundAttachment
property to false
in the corePlugins
section of your config file:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
+ backgroundAttachment: false,
}
}