I am using @keyframes to apply the animation on progress bar but it is causing issues with iphone 5s. What is happening is in iphone 5s when i try to scroll the data in window it doesnt scroll the window but scrolls the page behind it. so when i commented this code that doesnt happen. so trying to see if there is any other way to do this.
@keyframes loadbar {
0% {
opacity: 1;
}
100% {
opacity: 1;
transform: translateX(0) translate3d(0, 0, 0);
}
}
.progressBar--progress {
opacity: 0;
transform: translateX(-100%) translate3d(0, 0, 0);
}