I have a page with a grid of images where each have a slight CSS blur filter over them.
The scrolling works fine on iPhones (iOS 8 tested on 5+ and 6) but when it comes to iPad it gets really jerky and jumps around (iOS tested on 2 and 3 mini).
I tried the "trick" to force iOS into hardware acceleration but this didn't fix the issue.
-webkit-transform: translate3d(0, 0, 0);
I had the same issue, I solved using this properties only on a media that applies to iOS devices:
Also, my image container had a this code:
And finally I had issues with the scroll on the general container so I added:
Important: will-change is intended to be used as a last resort, in order to try to deal with existing performance problems. It should not be used to anticipate performance problems.