I have a question around jquery creating css animations.
I just finished a jquery plugin that draws and animates dom elements with css. I am using jquery only to change and create css variables. I just tested my code on my phone and it seems to get very choppy. From what I have been reading CSS 3 animations are hardware accelerated while jquery are not.
So... are runtime css attributes created by jquery hardware accelerated?
For example, applying a css attribute to blades that use transition-duration 0.3s
$(blades).css({'width':'5px'}); to animate
See my code at http://andehlu.github.io/sensuJS/
Thank you.