如果我正確地理解了這個問題,你問是否有一種方法來編程圖像的Photoshop圖像。我試過了,我想我有一個解決方案。
首先,你應該把你的形象。然後使用Photoshop或任何其他軟件,使需要改變其顏色的對象變得透明。然後查看下面的代碼並相應地進行調整。
JS:
function blue() {
document.getElementById("div").style.backgroundColor = "blue";
}
function red() {
document.getElementById("div").style.backgroundColor = "red";
}
function green() {
document.getElementById("div").style.backgroundColor = "green";
}
HTML:
<button onclick="blue()">Blue</button>
<button onclick="red()">Red</button>
<button onclick="green()">Green</button>
<div id="div" style="z-index: 1; background-color: blue; width:550; height:718;"> //Insert the width and height of the picture
<img src="Picture1.png" style="z-index:2;"/> //Picture1 is the picture with the object
</div>
當你點擊按鈕 '紅色',的DIV變爲紅色的背景色和,因爲你所做的對象的背景透明的對象應該顯示爲紅色。
View example on Codepen
如果你不瞭解情況,請提問,我需要支持! –