2013-04-04 113 views
1

我有一個問題,我在PhoneGap的背景背景固定的PhoneGap

我還使用jQuery Mobile的

這是我的CSS代碼生成巫背景

html, body { 
    top: 0px; 
    left: 0px; 
    height: 100%; 
    width: 100%; 
} 

.ui-page{ 
    top: 0px; 
    left: 0px; 
    background: url('../img/bg.jpg') 0 0 no-repeat fixed !important; 
    background-size: auto 100%; 
    height: 100%; 
    width: 100%; 
    font-family: MankSans; 
    background-position:fixed; 
    background-color:#102a3e; 
} 

當我在滾動頁面我的背景停留在頂部,但我的背景不能獲取的部分保持白色,我不明白爲什麼

感謝您的幫助

回答

1

從您的風格中刪除!important。這會覆蓋你的background-color。只需使用

.ui-page { 
    background: #102a3e url('../img/bg.jpg') 0 0 no-repeat fixed; 
} 
+0

感謝,但重要的是隻是爲了嘗試調試,我有同樣的問題,而不impotant – Ajouve 2013-04-04 23:24:00

+0

@ant,我看的,卻試圖在我的例子結合喜歡的顏色和影像風格(而使用'!important')? – 2013-04-04 23:25:37

+0

是的,我嘗試你的代碼,我有同樣的問題 – Ajouve 2013-04-04 23:26:55