scttnlsn/backbone.viewkit

Use translate3d instead of translateX

Closed this issue · 1 comments

Webkit only hardware accelerates 3d transitions.

els.css(Config.transform, 'translate3d(' + delta + 'px, 0, 0)');

It makes a big difference in some mobile browsers. Here's a stack overlfow post about it http://stackoverflow.com/questions/1103129/slow-animation-with-webkit-transform-translate-in-iphone-os-3-0

Good call! Thanks for catching this.