What's the CSS Filter alternative for Firefox?
cross-browser, css, filter, firefox, internet-explorer
Solution
Please check the Nihilogic Javascript Image Effect Library:
- supports IE and Fx pretty well
- has a lot of effects
You can find many other effects in the CVI Projects:
- they are also JS based
- there's a Lab to experiment
Good Luck
Problem
I'm using CSS Filters to modify images on the fly within the browser. These work perfectly in Internet Explorer, but aren't supported in Firefox. Does anyone know what the CSS Filter equivalent for these is for Firefox? An answer that would work cross browser (Safari, WebKit, Firefox, etc.) would be preferred. ``` <style type="text/css"> .CSSClassName {filter:Invert;} .CSSClassName {filter:Xray;} .CSSClassName {filter:Gray;} .CSSClassName {filter:FlipV;} </style> ``` Update: I know Filter is an IE specific feature. Is there any kind of equivalent for any of these that is supported by Firefox?