Closed jffortierqc closed 12 years ago
I noticed the same problem. No hardware acceleration on iOS devices. Setting useTranslate3d did the trick for me.
$(".target").animate({left: '+=260', useTranslate3d:true}, 1500, function() { //Do something });
Thanks @runey71
When I look into the HTML while the transition is running (safari - Web Inspector), I see the left property increase, but the translate3d properties don't change. I did that test because on my iPhone I don't see difference using the plugin or not. When I manually change the CSS property of my HTML object calling the -webkit-transform: translate3d(0px, 0px, 0px); CSS then I can see the difference.
This plugin is what I need to do a transition I'm pretty sure. But seams that I can see how to make it works, or what what is the problem. Note : yes the file is well implemented, I can do console.log() to trace some plugin infos.
Any idea