This effect works fine in FF but not Chrome- the Firebug results in Chrome show that the '-webkit-animation' aren't rendered in Chrome. In Firefox however, you see the'stretch' effect on entrance of the object. In Chrome, the object doesn't scale at all.

http://jsfiddle.net/AfDwu/5/

link|improve this question

2  
seems to work fine as far as i can tell -- there's an 80% animation point in the webkit keyframe that isn't present in the moz one though – thomas Nov 4 '11 at 20:19
works for me too as far as FF and Chrome... both results look the same anyways. – pjammer Dec 13 '11 at 22:30
I edited the jsfiddle so the effect is more dramatic. Can you see the difference now? jsfiddle.net/AfDwu/26 – AAAndreAAA Dec 15 '11 at 19:01
feedback

1 Answer

up vote 2 down vote accepted

You are not specifying the properties of the -webkit-animation, only the name.

Replace:

-webkit-animation-name: ooze

With:

-webkit-animation: ooze  2s 2s ease-in-out;

And it will work

link|improve this answer
SWEET!! Thanks Duopixel! – AAAndreAAA Jan 2 at 20:15
feedback

Your Answer

 
or
required, but never shown

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