我想將顏色設置爲transperent。 在RGB 255 0 255與alpha 5可能作爲transperent,但如何獲得它在十六進制?什麼是Transperent顏色的HEX代碼?
什麼是透明單位顏色的十六進制代碼 在此先感謝...
我想將顏色設置爲transperent。 在RGB 255 0 255與alpha 5可能作爲transperent,但如何獲得它在十六進制?什麼是Transperent顏色的HEX代碼?
什麼是透明單位顏色的十六進制代碼 在此先感謝...
有沒有這樣的事情;透明度通過另一個channel完成。
您可以使用RGBA(255,0,255,1)
<svg class="svg_element" style="margin-top:0px;margin-left:560px">
<circle cx="25" cy="25" r="20" fill="rgba(128, 0, 128, 0.75)"
stroke="rgba(0, 255, 0, 0.25)" stroke-width="10"/>
<circle cx="75" cy="25" r="20"
fill="rgba(0, 255, 0, 1)"
stroke="rgba(0, 0, 255, 0.1)" stroke-width="10"/>
<circle cx="125" cy="25" r="20"
fill="rgba(255, 255, 0, 0.75)"
stroke="rgba(255, 0, 0, 0.25)" stroke-width="10"/>
</svg>
這裏是fiddle
哇,我從來沒有在我的生活這就是思想,怎麼能做到呢? – YOU
我問了同一個問題[幾天前](http://stackoverflow.com/questions/1751263/hex-colors-numeric-representation-for-transparent)。 –