I want to zoom slowly into an image. My idea works very nice in webkit but not in Firefox. Does someone know why or how to make it better?

link|improve this question

1  
The effect is reliant on JavaScript, so there's no reason to use CSS3 transforms that I can see, other than the performance gain. But, because the effect takes 20 seconds, you could do the exact same thing with JavaScript without transform, and have it almost as fast, but working in all browsers. Something to bear in mind if it's not possible to improve this in Firefox. – thirtydot Jun 13 '11 at 9:18
1  
The title is misleading: this is not about CSS3 animations. – Knu Jun 13 '11 at 10:01
feedback

2 Answers

up vote 2 down vote accepted

Paul Rouget (Mozilla) says it's a bug: http://twitter.com/#!/paulrouget/status/80204726054043648

Bugreport: https://bugzilla.mozilla.org/show_bug.cgi?id=663776

link|improve this answer
feedback

Firefox Opera don't support css3 Animation

test: http://modernizr.github.com/Modernizr/test/index.html

link|improve this answer
1  
Firefox 5 (currently beta) does - css3.info/css3-animations-support-in-firefox-5-beta and Opera 10.5 does as well - opera.com/docs/specs/presto23/css/transitions – PhilI Jun 13 '11 at 9:31
Mozilla looks at this as a bug: twitter.com/#!/paulrouget/status/80204726054043648 – binarious Jun 13 '11 at 9:38
2  
Are you kidding me? This doesn't use animation, it uses transform http://caniuse.com/transforms2d and transition http://caniuse.com/#search=transition, both of which work in Firefox 4. – thirtydot Jun 13 '11 at 9:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.