Tailwind CSS on GitHub

背景图像固定

用于控制背景图片在滚动时的表现的功能类。

Default class reference

Class
Properties
bg-fixedbackground-attachment: fixed;
bg-localbackground-attachment: local;
bg-scrollbackground-attachment: scroll;

Fixed

使用 bg-fixed 来固定相对于视口的背景图片。

<div class="bg-fixed ..." style="background-image: url(...)"></div>

Local

使用 bg-local 来滚动容器和视口的背景图片。

<div class="bg-local ..." style="background-image: url(...)"></div>

Scroll

使用 bg-scroll 来滚动背景图片与视口,而不是容器。

<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,
    }
  }