I am trying to animate an SVG which I managed to do via this filter:
<defs>
<filter id="green-fill" x="0%" y="0%">
<feFlood flood-color="#fff"/>
<feOffset dx="85">
<animate attributeName="dx" from="0" to="85" dur="5s"/>
</feOffset>
<feComposite operator="in" in2="SourceGraphic"/>
<feComposite operator="over" in2="SourceGraphic"/>
</filter>
</defs>
my real problem comes when I am trying to trigger the animation on hover state, it seems that the animation is taking place when the page is load.
I tried by adding the filter on hover with pure css but no chance:
.item:hover .svg-fill path{ filter:url(#green-fill); }
Also I find that can be done with Javascript but again didn't had any success.
here is the codepen example:CodePen
you can set
begin="indefinite"
on your animate element, and then call the .beginElement() function on that element whenever you want to start it.