固定背景不動:background-attachment:fixed;
ios系統和某些移動端background-attachment:fixed不兼容性,沒有任何效果,但可以hack一下就可以了,代碼如下:
ps:想在哪個標簽加背景,可以在它class后:before.
body:before {
content: ' ';
position: fixed;
z-index: -1;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: url(path/to/image) center 0 no-repeat;
background-size: cover;
}
/*實踐出真知,要多實踐,用心實踐,多簡單的事情都要動手做一做!!*/