這裏是我的CSS類背景圖片(居中)在iPhone
.parallax {
background: url(../images/indexParallax.png) no-repeat center center fixed;
display: table;
height: 100%;
position: relative;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
overflow: hidden;
}
在臺式電腦和Android手機,正確顯示該視差。但是當涉及到iPhone(4和5和6)時,就會出現問題。圖像顯示但沒有正確縮放背景圖像。
任何想法?謝謝。
我相信'背景附件:fixed'不會在iOS – zgood