Is it possible to animate an svg path "Fly-In" effect in Internet Explorer 11?
Here is an example:
@keyframes fadeInP {
from
{
stroke-dashoffset:1000;
}
to {
stroke-dashoffset: 0;
}
}
.animate
{
animation: fadeInP 10s linear infinite;
}
Using the following code snippet:
<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>
This animation works in Firefox, but I have not been able to find a solution for achieving a similar effect in Internet Explorer.
Thank you for your help!