我正在研究这个website,我正在使用mp4视频作为背景,你可以看到。
此BG视频无法在移动设备上运行,为此我必须使用后备图像。
问题是在页面加载时,此图像可见1秒或2秒。可以在桌面上完全隐藏它吗?
任何提示?
答案 0 :(得分: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
}
}