-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
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
Firefox 16 #7
Comments
The plugin produces weird results for me too with Firefox 16. |
The CSS value returned in javascript using this plugin on the line : is now in "matrix" format for Firefox 16. It was in "deg" format before. So it now creates a bug when the code attemps to replace the value : |
Anyone know how to fix this? |
You could either change the code to track the rotation / scaling units in its own variable rather than fetching and parsing the value of css('transform') or you could add support for converting the matrix back to rotation/scale info: http://css-tricks.com/get-value-of-css-rotation-through-javascript/ Feel free to fork. I can't get to this fix right now. |
Firefox 16 broke the animated transformations with this plugin indeed. On my project the scaled transform is applied twice, once with scale() and once with matrix(). |
I fixed the scaling portion of this problem, check my pull request. This should help all those using the quicksand plugin with the latest versions of jQuery in Firefox. |
I have just pushed new code that should support Firefox 16. Let me know if you have further problems. |
looks like it works again now |
rotate issue
Can sombody proof
$('#img2').animate({rotate: '+=90deg'}, 900, function() {
});
flop like crazzy in Firefox 16
The text was updated successfully, but these errors were encountered: