I had exactly the same problem, and I had great success with this little CSS gem:
-webkit-backface-visibility: hidden;
I found that adding this to any element that was animated allowed for "block" rendering. In some cases, I also had to add it to child elements, for example. I had a large wrapping div, and I used translateX to adjust the x-position. I added a CSS magic string to the div wrapper, as well as the direct children of that div (which were my content areas). Play with him, and you hopefully figured out!
source share