1234567891011121314151617181920212223242526272829 |
- .loading{
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- .cover{
- width: 100%;
- height: 100%;
- background: #000;
- opacity: .4;
- filter:alpha(opacity=40);
- -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
- }
- .info{
- position: absolute;
- top: 40%;
- left: 45%;//calc(50% - 50px);
- text-align: center;
- img{
- width: 40px;
- height: 40px;
- }
- }
- p{
- color: #fff;
- }
- }
|