I am using CSS3 Transitions, and I am wondering if once the animation is started with:
-webkit-transform: translate3d(-100%, 0, 0);
Can I somehow increase the speed which was pre-set using:
-webkit-transition: all 10s linear;
I want the speed to be 2s using jQuery.
It appears you can with
this.style["-webkit-transition"]http://jsfiddle.net/X5shh/
HTML
CSS
jQuery
EDIT
or