Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS3 filter doesn't work on Opera,Internet Explorer,Mozilla Firefox [closed]

CSS have command filter and it have many functions examples:

  filter: grayscale(0);
  filter: sepia(0);
  filter: saturate(1);
  filter: hue-rotate(0deg);
  filter: invert(0);
  filter: opacity(1);
  filter: brightness(1);
  filter: contrast(1);
  filter: blur(0px);

Filter supporting Chrome 18+,Safari 6+. (Source: http://css3.bradshawenterprises.com/filters/)

I need use grayscale, sepia, saturate, brightness, contrast, blur. I can't use any of this because few browsers(ie,mozilla,opera) doesn't support filter

My question: Maybe this functions have alternatives or something else to get similar result like: grayscale, sepia, saturate, brightness, contrast, blur

What i try: add prefix: -moz-, -o-, -ms-

Something from official microsoft website examples, but doesn't work :/ Source: http://msdn.microsoft.com/en-us/library/ms532847(v=vs.85).aspx) like this:

filter:progid:DXImageTransform.Microsoft.MotionBlur(strength=50)
        progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); width=50%

What's interesting is. I found solutions for internet explorer: 6,7,8 (Source: http://www.smashingmagazine.com/2010/04/28/css3-solutions-for-internet-explorer/) i try test it for me internet explorer 11, but it's doesn't work. code:

filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81a8cb', endColorstr='#4477a1'); /* IE6 & IE7 */
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81a8cb', endColorstr='#4477a1')"; /* IE8 */

I need to find a solution that operates on Mozilla, Opera, Internet Explorer at least with latest versions

like image 685
Asker Avatar asked Jun 23 '26 12:06

Asker


1 Answers

http://caniuse.com/#search=filter

From what I can tell, CSS Filter Effects are not supported in IE all the way up to IE v11. Firefox has partial support. Opera v24 and up have full support with -webkit- prefix.

like image 52
Zack Avatar answered Jun 26 '26 09:06

Zack



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!