是否有可能在 IE 11 中“飞入”svgpath?
喜欢
@keyframes fadeInP {
from
{
stroke-dashoffset:1000;
}
to {
stroke-dashoffset: 0;
}
}
.animate
{
animation: fadeInP 10s linear infinite;
}
为了
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 400 400">
<path stroke-width='8' class = "animate" fill='none' stroke="#ffffff" d="M 0,0 C 100,10 200,80 300,15 " />
</svg>
这适用于 FF,但无法在网络上找到任何解决方案来在 IE 中做类似的事情。
提前致谢