2016-06-07 105 views
0

我正在研究website,我正在使用mp4視頻作爲背景,如您所見。在桌面上隱藏備用圖像

此BG視頻不適用於手機,爲此我必須使用備用映像

問題是,在頁面加載時,該圖像可見1或2秒。是否有可能將其完全隱藏在桌面上?

任何提示?

+0

可以隱藏整個元素,直到視頻加載,然後取消隱藏它。 – wot

+0

堆棧溢出社區嚴格建議您創建一個JSFiddle,而不是給我們鏈接到您的網站。你能否做出改變,以便遵循社區標準。 –

回答

0

使用CSS3媒體查詢,以去除背景如下

@media only screen and (min-width: 769px) { 
    #idOfElementToHide { 
     background-image: none !important; // assuming that you are using inline styles you'll have to add !important to make sure this overrides the inline styles 
    } 
} 
+1

哦,是的!不要忘了你的樣式表需要加載到頁面的頭部,否則它仍然會嘗試加載你的背景圖片,然後再次刪除它 –