2016-03-04 103 views

回答

3

一個小動作,你可以很容易地做到這一點。只是把圖像內的,透明的,然後

enter image description here

<style type="text/css"> 
.bx{ 
    width: 73px; 
    height: 73px; 
    background: transparent url("top.png") no-repeat; 
} 
.bx.yellow{background-color: yellow} 
.bx.green{background-color: green} 
</style> 

<div class="bx"></div> 
<div class="bx yellow"></div> 
<div class="bx green"></div> 

enter image description here

+0

很好,但我有一個更復雜的圖像,更多的顏色可以改變。 –

+1

@AdrianSimionescu對於這種類型的東西通常只適用於圖像。對於綠色和黃色,只需使用綠色和黃色圖像,並通過用戶操作加載它們 – Shayan

相關問題