-
Notifications
You must be signed in to change notification settings - Fork 171
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
Scale animation failing on IE9 #18
Comments
And as this is my first post here, let me litter it with the following fluff: Thanks for making this cool plugin! I had created a prototype isometric 3D flip effect using 2D transformation and CSS transitions on WebKit, but then switched to this plugin for the better cross-browser support. It greatly simplified my code. Performance is obviously lower than the browser-native animations I originally used, but it's still good enough. Now if we can sort out what's going on here, I'll get that cross-browser support. :) |
Hey richcon, Sorry for not answering earlier. I don't have IE9 so I'm unable to reproduce the bug you're seeing. Have you, by any chance, more info on the matter? Thank you. |
I'm interested in knowing if there are problems with rotate, skew and translate animations in IE9 as well, and if the problem is still present in the last preview of IE10. |
I'm having the same issue. Here is the fiddle I used to demonstrate it in ie9. http://jsfiddle.net/24CG2/ |
Hi Stephen, Can I ask you to confirm that you haven't such problems with rotate and skew in IE9, and can you check whether the problem is still present in the latest preview of IE10? |
Hello, |
Hi, I had access to IE9 today and here are my first findings:
You can use http://jsfiddle.net to create a test case and load jquery.transform2d.js using the "manage ressources" menu by entering this address: http://louisremi.github.com/jquery.transform.js/jquery.transform2d.js Thank you in advance |
Thanks for the update! Cash |
by the way, there's another issue when scale to 0 with the version from test case here jquery.transform2d.js:408 Uncaught Error: matrix is singular Cash |
@cashlo Finally some useful info in that bug report! |
I'm having the same error here... |
Hey @cashlo, The latest version of jquery.transform2d.js I just pushed includes a fix for the "matrix is singular" error. Thanks for your patience |
Hi, I believe this problem has just been fixed by @Clorr |
Almost... I can scale TO 0 but not FROM 0. My workaround at the moment is scaling to 0.1 and fading it out. |
Alright, reopening then. |
On IE9, the following works as expected:
$(elem).css({transform: "scale(0.5, 1)"})
But, the following produces no results:
$(elem).animate({transform: "scale(0.5, 1)"})
(This works in Firefox, Safari, and Chrome, just not IE 9.)
I've tested this with both JQuery 1.6.2 and JQuery 1.7.
The text was updated successfully, but these errors were encountered: