2016-01-13 83 views
0

我有一個圖像我想旋轉透明,當我的屏幕被阻止。默認情況下有一個白色框作爲消息CSS。不知道如何實現這一點。jquery BlockUI - 透明加載圖像

來源:查看源代碼:http://malsup.com/jquery/block/#demos

本節在這裏創建圖像周圍的白色盒子。

$.blockUI({ message: '<h1><img src="./images/loading.gif" /></h1>' 

如果我評論這部分源代碼,整個圖像消失。

css: { 
    padding:   0, 
    margin:   0, 
    width:   '30%', 
    top:    '40%', 
    left:   '35%', 
    textAlign:  'center', 
    color:   '#000', 
    border:   '3px solid #aaa', 
    backgroundColor: '#fff', 
    cursor:   'wait' 
}, 
+0

'的backgroundColor:'#fff'' ...? – CBroe

+0

你可以創建一個小提琴來演示這個問題嗎? – AtheistP3ace

回答

2

試試這個:

css: { 
    backgroundColor: 'transparent', 
    border: '0' 
}, 

例如小提琴:https://jsfiddle.net/johnboker/ft3vwn2f/

+0

我現在試試這個 –

+0

嘿,這是工作.... –

+0

我很高興我可以幫助。 –