It can be done with a little bit of extra overhead.
Simply wrap your link in a div, and separate the animation.
the html ..
.. and the css ..
.animateOnce {
animation: splash 1s normal forwards ease-in-out;
}
.animateOnHover:hover {
animation: hover 1s infinite alternate ease-in-out;
}