I have been working on this issue for a while now but haven't made any progress. I am not seeing any errors in the console and the div is not rotating as expected. http://jsfiddle.net/B8shT/
window.i = 10000;
function dothetwist()
{
$('#box').animate( {
step: function(now,fx) {
$(this).css('-webkit-transform','rotatey('+now+'deg)');
},
duration: window.i,
complete: function() {
window.i=window.i-1000;
dothetwist();
}
});
}
Can anyone help me figure out what I'm missing?