If an element has an "onmousemove" attribute, it should also have an attribute that would make the action available with the keyboard only.
<a onmousemove="alert('Hello, there');" href="#">Open an alert.</a>
<a onmousemove="alert('Hello, there');" onkeypdown="alert('Hello, there');"
href="#">Open an alert.</a>