显然,IE10 不支持SVGtransform
的 CSS ations,只支持像这样的属性转换(JSFIDDLE):
<svg><rect id="myrect" width="200" height="200"></rect></svg>
setTimeout(function()
{
var r = document.getElementById("myrect")
//works in IE
//r.setAttribute("transform","scale(1.5)")
//does not work in IE
r.style.transform = r.style.WebkitTransform = "scale(1.5)"
},1000);
在支持的情况下,我想包括一个平滑的过渡:
#myrect { transition: all 1s; }
在我看来,平滑过渡需要 CSS 转换,而 IE 需要属性转换。
那么最好的策略是什么?测试IE,如果IE使用属性转换,则使用CSS转换?
任何想法都非常感谢!