通過rgba設置透明度,只有最新的瀏覽器支持,支持ie9 ,可通過rgba的alpha通道的方式設定。
(推薦教程:css教程)
<body><div style="background-color:rgba(0,255,0,0.2);"> 顯示文字 </div> </body>前三個值是rgb的顏色值,最后一個透明度的值,取值為0~1,值越小越透明。
兼容所有瀏覽器寫法:
background-color:rgba(0,0,0,0.25);filter:progid:dximagetransform.microsoft.gradient(startcolorstr=#40000000,endcolorstr=#40000000);注意:startcolorstr 和 endcolorstr 的值,前兩位是十六進制的透明度,后面六位是十六進制的顏色。
其格式為 #aarrggbb 。 aa 、 rr 、 gg 、 bb 為十六進制正整數(shù)。取值范圍為 00 – ff 。
rr 指定紅色值, gg 指定綠色值, bb 指定藍色值,參閱 #rrggbb 顏色單位。 aa 指定透明度。 00 是完全透明。 ff 是完全不透明。超出取值范圍的值將被恢復為默認值。
(視頻教程推薦:css視頻教程)
2位透明度的換算方法:x=alpha*255 ,將計算的結果 x 轉換成十六進制即可。
js換算16進制方法: x.tostring(16)
例如:上面的 0.25 透明度,換算為ie的aa透明度: var a = 0.25 * 255 = 63.75 ~= 64; a.tostring(16) = 40
舉例:
<!doctype html><head><meta charset="utf-8"/><style type="text/css">body{margin:0;padding:0;}.div_content{ background: url("1.gif") no-repeat; /*給input框添加背景圖片,以凸顯其透明效果。*/ width: 200px; height: 200px;}.div_content>input{ outline: none; border: none; background-color: transparent; /*必須將背景色設為透明,否則無效。(除非對于要設置的元素本身已經(jīng)是透明的,如:span元素等)*/ background-color: rgba(0,0,0,0.25); filter: progid:dximagetransform.microsoft.gradient(startcolorstr=#40000000,endcolorstr=#40000000);}</style></head><body> <div class="div_content"> <input type="text" size="20"/> </div></body></html>