在HTML中添加一个div和一个类(例如:mask)
<div class="mask></div>
在CSS中,将规则添加到该类中
.mask {
width: 100%;
height: 100%;
position: fixed;
z-index: -1;
/* Fallback for web browsers that doesn't support RGBa */
background: rgb(255, 255, 255);
/* RGBa with 0.6 opacity */
background: rgba(255, 255, 255, 0.6);
/* For IE 5.5 - 7*/
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
/* For IE 8*/
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}
我已经更新了你的
Fiddle
还有。