I successfully animated an svg and it runs smoothly. The animation remains in place after completion thanks to the animation-fill-mode: forwards property I've set.
Currently, my svg html includes:
stroke="none"
In the @keyframes css, I have defined it as:
from{ stroke: none; }
to { stroke: #fff; }
Once the animation is complete, the strokes change color on :hover as intended. However, moving the cursor away resets the animation.
Is there a way for me to make the SVG revert back to its original #FFF stroke without restarting the animation after the hover effect concludes?