我试图扩展以下SVG路径。这在chrome和firefox中运行良好。但在IE10中,它无法正常工作。有什么建议?请在下面找到我的代码。
<svg width="220" height="220">
<g transform="translate(110,110)">
<path d="M0 -43.3 50 43.3 -50 43.3Z" fill="yellow" stroke="blue" stroke-width="2"
id="scale" class="grow two" />
</g>
</svg>
button.layer.cornerRadius = button.frame.size.width/2.0
button.layer.borderColor = UIColor(red:200/255, green:37/255, blue:6/255, alpha:1.0).CGColor
button.backgroundColor = UIColor.whiteColor()
button.tintColor = UIColor(red:200/255, green:37/255, blue:6/255, alpha:1.0).CGColor
button.layer.masksToBounds = true
提前致谢。