1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*自訂Loading 圖示*/
.loading-div .cnt {
position: relative;
margin: 0 auto;
background-repeat: no-repeat;
background-position: center center;
background-image: url( 圖片網址);
width: 200px;
height: 200px;
opacity: 1;
}
/*官方 Loading*/
.loading-div .cnt img {
opacity: 0;
width:0;
height:0;
filter: alpha(opacity=0); /* 透明遮罩 */
display:none;
}