#loadingImage,#loadingText {
    background-color: grey;
    /*IE的透明度*/
    filter: alpha(opacity=50);
    /*透明度，数值越大越透明，不要调太小，不然gif图片会特别模糊*/
    opacity: 0.1;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*此处的图层要大于页面*/
    z-index: 100;
}