W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
用于控制元素的背景圖像應(yīng)如何與其背景顏色混合的實(shí)用程序。
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}
? 實(shí)用程序來控制元素的背景圖像應(yīng)如何混合其背景顏色。
<div class="bg-blend-multiply ...">
<!-- ... -->
</div>
要在特定斷點(diǎn)處控制 background-blend-mode 屬性,請(qǐng)將 ?{screen}:
? 前綴添加到任何現(xiàn)有的 background-blend-mode 實(shí)用程序。例如,使用 ?md:bg-blend-darken
? 將 ?bg-blend-darken
? 實(shí)用程序僅應(yīng)用于中等大小及以上的屏幕。
<div class="bg-blend-lighten md:bg-blend-darken ...">
<!-- ... -->
</div>
有關(guān) Tailwind 響應(yīng)式設(shè)計(jì)功能的更多信息,請(qǐng)查看響應(yīng)式設(shè)計(jì)文檔。
默認(rèn)情況下, 針對(duì) background-blend-mode 功能類,只生成 responsive 變體。
您可以通過修改您的 ?tailwind.config.js
? 文件中的 ?variants
?部分中的 ?backgroundBlendMode
?屬性來控制為 background-blend-mode 功能生成哪些變體。
例如,這個(gè)配置也將生成 hover and focus 變體:
// tailwind.config.js
module.exports = {
variants: {
extend: {
// ...
backgroundBlendMode: ['hover', 'focus'],
}
}
}
如果您不打算在您的項(xiàng)目中使用 background-blend-mode 功能,您可以通過在配置文件的 ?corePlugins
?部分將 ?backgroundBlendMode
?屬性設(shè)置為 ?false
?來完全禁用它們:
// tailwind.config.js
module.exports = {
corePlugins: {
// ...
backgroundBlendMode: false,
}
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: