在項目過程中,遇到這樣一個問題,背景圖片固定背景,不隨著滾動條滾動!
大伙都知道直接用背景固定位就可以解決了!
? ? ?background:url(...) fixed;
但是在移動端項目使用過程中,這效果始終無法實現(xiàn)背景固定定位,安卓及蘋果機都不能有效的背景固定!
所以找了以下方法解決!
body:before {
? ? ?content: ' ';
? ? ?position: fixed;
? ? z-index: -1;
? ?top: 0;
? ?right: 0;
? ? bottom: 0;
? ? left: 0;
? ? background: url(...) center 0 no-repeat;
? ? background-size: cover;
}