This particular code snippet is functional when used on desktop computers and Android devices, but unfortunately does not seem to work properly on iOS. Any assistance or guidance in the right direction would be greatly appreciated.
Click here to view the code snippet
html, body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
.holder {
position: relative;
width: 100%;
height: 100%;
overflow-y: scroll;
overflow-x: hidden;
-webkit-overflow-scrolling: touch;
}
.content {
width: 100%;
height: 128px;
overflow-y: hidden;
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
}
.row {
width: 3000px;
height: 100%;
background-image: -webkit-linear-gradient(
left,
rgba(0, 0, 255, 0.0) 0%,
rgba(0, 0, 255, 1.0) 100%
);
}
<div class="holder">
<div class="content">
<div class="row"></div>
</div>
<div class="content">
<div class="row"></div>
</div>
<div class="content">
<div class="row"></div>
</div>
<div class="content">
<div class="row"></div>
</div>
<div class="content">
<div class="row"></div>
</div>
<div class="content">
<div class="row"></div>
</div>
</div>