Is there an animatable transition-property for css filters?

0skar picture 0skar · Aug 30, 2012 · Viewed 57.9k times · Source

I'm trying to animate CSS filters but can't find any information on the correct transition properties. What are they?

Here's an example: http://jsbin.com/onijim/3/

Answer

mddw picture mddw · Aug 30, 2012
-webkit-transition : -webkit-filter 500ms linear

works in webkit. I don't know about filter support in FF or Opera.

I'm not sure I wholly understand your question.