我試圖縮放下面的SVG路徑。這適用於Chrome和Firefox。但在IE10中它不起作用。有什麼建議麼?請在下面找到我的代碼。在IE10中CSS縮放無法正常工作
.two {
transition: all 2s ease-in-out 0.5s;
-webkit-transition: all 2s ease-in-out 0.5s;
}
#scale {
height: 150px;
width: 100px;
text-align: center;
margin: 0 auto;
}
#scale {
border: 1px blue solid;
}
.grow:hover {
transform: scale(2.0);
/*-ms-transform: scale(2.0);*/
-webkit-transform: scale(2.0);
}
<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>
在此先感謝。
正如你通過實驗看到IE不支持CSS變換的SVG內容。 –