Tailwind CSS 文本顏色不透明度

2022-08-04 09:54 更新

文本顏色不透明度

用于控制元素文本顏色不透明度的功能類。

Class
Properties
text-opacity-0 --tw-text-opacity: 0;
text-opacity-5 --tw-text-opacity: 0.05;
text-opacity-10 --tw-text-opacity: 0.1;
text-opacity-20 --tw-text-opacity: 0.2;
text-opacity-25 --tw-text-opacity: 0.25;
text-opacity-30 --tw-text-opacity: 0.3;
text-opacity-40 --tw-text-opacity: 0.4;
text-opacity-50 --tw-text-opacity: 0.5;
text-opacity-60 --tw-text-opacity: 0.6;
text-opacity-70 --tw-text-opacity: 0.7;
text-opacity-75 --tw-text-opacity: 0.75;
text-opacity-80 --tw-text-opacity: 0.8;
text-opacity-90 --tw-text-opacity: 0.9;
text-opacity-95 --tw-text-opacity: 0.95;
text-opacity-100 --tw-text-opacity: 1;

使用

使用 ?text-opacity-{amount}? 功能類控制元素的文字顏色的不透明度。


<p class="text-purple-700 text-opacity-100 ...">The quick brown fox ...</p>
<p class="text-purple-700 text-opacity-75 ...">The quick brown fox ...</p>
<p class="text-purple-700 text-opacity-50 ...">The quick brown fox ...</p>
<p class="text-purple-700 text-opacity-25 ...">The quick brown fox ...</p>
<p class="text-purple-700 text-opacity-0 ...">The quick brown fox ...</p>

請注意,由于這些功能類是通過 CSS 自定義屬性來實現(xiàn)的,因此必須在同一元素上存在 ?.text-{color}? 功能類,它們才能發(fā)揮作用。

不要試圖在繼承的文本顏色上使用文本不透明度功能類

<div class="text-black">
  <div class="text-opacity-50">...</div>
</div>

請確保在同一元素中明確添加文本顏色功能類

<div class="text-black">
  <div class="text-black text-opacity-50">...</div>
</div>

響應式

要在特定的斷點處控制元素的文本顏色不透明度,請在任何現(xiàn)有的文本顏色不透明度功能類中添加 ?{screen}:? 前綴。例如,使用 ?md:text-opacity-50? 來應用 ?text-opacity-50? 功能類在中等大小的屏幕或以上。

<div class="text-blue-500 text-opacity-75 md:text-opacity-50">
  <!-- ... -->
</div>

關于 Tailwind 的響應式設計功能的更多信息,請查看響應式設計文檔。

自定義

要一次性自定義所有與不透明度相關的功能類的不透明度值,請使用您的 ?tailwind.config.js? 主題配置中的 ?opacity? 部分。

  // tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        opacity: {
         '10': '0.1',
         '20': '0.2',
         '95': '0.95',
        }
      }
    }
  }

如果您只想自定義文本不透明度功能類,請使用 ?textOpacity ?部分。

  // tailwind.config.js
  module.exports = {
    theme: {
      extend: {
        textOpacity: {
         '10': '0.1',
         '20': '0.2',
         '95': '0.95',
        }
      }
    }
  }

主題定制文檔中了解更多關于定制默認主題的信息。

變體

默認情況下, 針對 text opacity 功能類,只生成 responsive, dark mode (if enabled), group-hover, focus-within, hover 和 focus 變體。

您可以通過修改您的 ?tailwind.config.js? 文件中的 ?variants ?部分中的 ?textOpacity ?屬性來控制為 text opacity 功能生成哪些變體。

例如,這個配置也將生成 active 變體:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
       textOpacity: ['active'],
      }
    }
  }

禁用

如果您不打算在您的項目中使用 text opacity 功能,您可以通過在配置文件的 ?corePlugins ?部分將 ?textOpacity ?屬性設置為 ?false ?來完全禁用它們:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
     textOpacity: false,
    }
  }


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號