我有這樣的代碼:背景 - 混合模式爲多背景圖片
BACKGROUND-IMAGE: url("Background-2.png"),
url("Background.jpg");
如何只在Background.jpg
適用BACKGROUND-BLEND-MODE
而不是Background-2.png
?
我有這樣的代碼:背景 - 混合模式爲多背景圖片
BACKGROUND-IMAGE: url("Background-2.png"),
url("Background.jpg");
如何只在Background.jpg
適用BACKGROUND-BLEND-MODE
而不是Background-2.png
?
像這樣:
<div style="width:300px; height:300px; background-color:#FF0000;
background-image:url('https://mdn.mozillademos.org/files/8543/br.png'),url('https://mdn.mozillademos.org/files/8545/tr.png');
background-blend-mode:darken,lighten;">
</div>
注意傳遞到混合模式風格兩個值。第一個影響第一個背景,第二個影響第二個背景。
https://jsfiddle.net/x7pjae50/
基於關閉語法我發現這裏: https://developer.mozilla.org/en-US/docs/Web/CSS/background-blend-mode
如果你想要一個沒有混合模式,即「混合模式正常。」
有關多背景混合模式的好文章
謝謝!它完成了這項工作。 – Dejan
同樣也謝謝你,因爲你剛剛教會我多個背景圖像是一件東西,而且它們可以混合使用。很有用。 – Draco18s