javascript - Grey out an image in IE -
this question has answer here:
i got question , works in chrome , ff, not in ie (i have ie 11.0.9)
-webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -o-filter: grayscale(0%); filter: grayscale(0%); filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><fecolormatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale"); -ms-filter: grayscale(0%);
is there way make image grey in ie css or js?
if talking pre ie10(ie6-9), need add: filter: gray;
Comments
Post a Comment