我有一個加載div,加載符號作爲背景圖像。我希望加載符號完全不透明。但是,爲了淡出正在加載的頁面,我將背景圖像設置爲80%不透明度。這適用於Chrome和Firefox,但在IE8中,加載符號也是半透明的。有沒有辦法淡化背景顏色,但不是在ie8中的背景圖像?IE8:半透明的背景顏色,但不透明的背景圖像
的CSS:
#loadingDiv {
background: url(../../images/Loading32.gif) no-repeat center center;
background-color: rgba(255,255,255, .8);
position: absolute;
height: 330px;
width: 890px;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#88ffffff, endColorstr=#88ffffff)";
}