Does anyone know if there is a reasonable way to make this parallax background scrolling effect work on iOS devices? Here is the page I am working on. http://districtdentalontheouachita.com/new/
Right now all I am doing to achieve this effect is to used background-attachment: fixed;
Here is the css for my sections
.section1 {
width:100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
background-image: url("images/dental1.jpg");
background-attachment:fixed;
}
The client really wants this effect but I cant make it work on iOS...