문제

The fill-opacity selector doesn't seem to work in IE8. Does anyone know how to make VML shapes in IE8 semi-transparent?

도움이 되었습니까?

해결책 2

I've decided to leave well-enough alone. If IE8 refuses to accept SVGs, then user's will have to use the uglier VML experience :P

다른 팁

Have you tried like setting the opacity attribute to the v:fill element ?

var vfill = document.createElement("v:fill");
vfill.setAttribute("color",fillcolor);
vfill.setAttribute("opacity",fillopacity);

Source

http://msdn.microsoft.com/en-us/library/bb229612(v=vs.85).aspx

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top