1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
/*官方 Loading圖*/
.loading-div .cnt img {
opacity: 0; /*隱藏*/
}

/*Loading圖更換*/
.loading-div .cnt {
position: relative;
margin: 0 auto;
background-repeat: no-repeat;
background-position: center center;
background-image: url('圖片網址'); /*Loading圖*/
width: 253px; /*圖片寬度*/
height: 178px; /*圖片高度*/
}