I'm currently working on a project utilizing angularjs and bootstrap, aiming to replicate iOS's navigationController feature. However, I'm encountering speed issues, particularly when scrolling between views on mobile safari iOS.
The transition doesn't feel smooth or responsive enough, which is affecting user experience. I've looked at examples like Ionic but unfortunately, we can't use them as they are designed specifically for mobile platforms.
My main concern is how to enhance the speed of scrolling up/down and left/right transitions in mobile safari iOS. Any suggestions or tips would be greatly appreciated.
This snippet showcases my current code:
/* View animations */
.view-animate-container {
position: relative;
width: 100%;
}
.view-animate {
-webkit-backface-visibility: hidden;
}
...