2013-01-18 46 views
0

我在我的頁面中添加了超級jquery代碼,一切工作正常,除了進度圖標(gif),不會顯示。我在很多瀏覽器中測試過。請注意,我在談論進度圖標(progress.gif)而不是進度條。超級jquery進度圖標doens't去

CSS:

#supersized-loader { 
position:absolute; top:50%; left:50%; z-index:0; width:60px; height:60px;  margin:-30px 0 0 -30px; text-indent:-999em; background:url(img/progress.gif) no-repeat center center;} 

#supersized { 
position:fixed; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%; } 

#supersized img{ 
width:auto; height:auto; position:relative; outline:none; border:none; } 

#supersized a { 
z-index:-30; position:fixed; overflow:hidden; top:0; left:0; width:100%; height:100%; background:#111; display:block; } 

#supersized a.image-loading { 
background:#111 url(img/progress.gif) no-repeat center center; width:100%; height:100%; } 

的Jquery:

jQuery(function($){ 

$.supersized({ 
slides : [ {image : 'img/backgroung001.png'} ] 
}); 
}); 

我想知道如果我有jQuery代碼中調用它(progress.gif)。 幫助! Thanx!

回答

1

您的選擇是錯誤的。

您必須使用$(".supersized")來應用jQuery函數。