IE gradient filter does not respond to click event

I want to have a transparent background color, and I use a gradient filter as a RGBA reserve in IE. The code looks like this:

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#bfffffff,endColorstr=#bfffffff);

I also want to trigger an event when the user clicks the background, but it looks like the click event is not triggered after I set the filter. Everything is fine without a filter.

So is this another IE bug? How can i solve the problem?

+5
source share
2 answers

, IE, : . , : , 10 ​​ . , IE .

. - . 1%, IE. , , .

+6

. Internet explorer , , , click, .

IE. . , .

without gradient filter:

------------------
 text layer
------------------
 background layer
------------------


with gradient filter:

------------------
 text layer
------------------
 gradient layer
------------------
 background layer
------------------

, , . . IE 9. , - , : - . , , .

+1

All Articles