我知道与此有关的几个主题,但是我找不到适合我的解决方案。用CSS动画绘制svg线在Chrome,Firefox和Edge上效果很好,但在IE11上效果不佳。
如何使其与IE11一起使用?通过使用Javascript吗?
谢谢您的帮助
#svg_5{
stroke-dasharray: 400;
stroke-dashoffset: 400;
animation: dash5 2s infinite;
}
@keyframes dash5 {
to {
stroke-dashoffset: 0;
}
}
<svg width="400" height="300" xmlns="http://www.w3.org/2000/svg">
<path d="m25.31261,164.29732c55.56496,-52.60342 103.00883,-52.44184 167.4407,-9.47015c64.43166,42.97148 136.394,-28.31529 137.87154,-31.47906" stroke-width="4" stroke-opacity="null" stroke="#000" fill-opacity="null" fill="#fff" opacity="0.5" id="svg_5"/>
</svg>