12345678910111213141516171819 |
- .mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: #000;
- opacity: .4;
- filter:alpha(opacity=40);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=40);";
- z-index: 9998;
- }
- .load{
- position: absolute;
- top: 50%;
- left:50%;
- margin-top: -64px;
- margin-left: -64px;
- }
|