I'm implementing parallax scrolling in my website, but it is not working in the mobile devices, I don't know how to implement it for mobile devices. I think this is because, the mobile displays are touch screens, so we have to use fingers to scroll where as in PC we can scroll with mouse. Thanks in advance.
.section1 {
background: url(https://hd.unsplash.com/photo-1465420961937-e0eba4dda519) no-repeat fixed center;
width: 100%;
height: 500px;
}
.section2 {
background: url(https://hd.unsplash.com/photo-1462121457351-9fb0f5622b72) no-repeat fixed center;
width: 100%;
height: 500px;
}
.section3 {
background: url(https://hd.unsplash.com/photo-1465420961937-e0eba4dda519) no-repeat fixed center;
width: 100%;
height: 500px;
}
<div class="section1"></div>
<div class="section2"></div>
<div class="section3"></div>