We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've written a pair of functions that rotate a div back and forth around its center point:
function graphic_rotate_cw() { jQuery("#bg-circles").animate( { rotateZ: '+='+.15 },4000,function(){graphic_rotate_ccw();}); } function graphic_rotate_ccw() { jQuery("#bg-circles").animate( { rotateZ: '-='+.15 },4000,function(){graphic_rotate_cw();}); }
They work exactly as expected in FF, Chrome and Safari. But in IE7-9, the image rotates around its lower-left corner instead.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've written a pair of functions that rotate a div back and forth around its center point:
They work exactly as expected in FF, Chrome and Safari. But in IE7-9, the image rotates around its lower-left corner instead.
The text was updated successfully, but these errors were encountered: