サイトのセクションの背景画像で全幅と全高を使用していますが、Android で動作が不安定です。modernizr を使用して touchevents を検出し、background-attachment を固定からローカルに変更しています。これがサイトで、以下は私が使用しているcssです。
.intro, .behind-the-scenes, .the-scene, .the-stage, .contact {
height: 100vh;
min-width: 100%;
color: $white;
display: table;
background-attachment: fixed;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
// if a touchevent is detected
.touchevents {
.intro, .behind-the-scenes, .the-scene, .the-stage, .contact {
background-attachment: local;
}
}