Cómo pausar la animación CSS al pasar el mouse usando jquery

¿Cómo detenemos la animación CSS en su estado cuando el usuario pasa el elemento por encima?

CSS

.container {
  height: 160px; width: 450px; background: gray; overflow: hidden;
}
.marquee {
  height: 140px; width: 400px; margin: 10px; background: red; position: relative; animation: marquee 10s linear infinite;
}

@keyframes marquee {
   0% {left: 100%;}
   100% {left: -100%;}
}

.marquee:hover {
  /* pause animation. this works but with compatibility issues 
     animation-play-state is still in W3C working draft
  */
  animation-play-state: paused; 
}

HTML

<div class="container">
    <div class="marquee"></div>
</div>

JAVASCRIPT

$(document).raedy(function() {
   $(.marquee).hover { //mouseenter() & mouseleave()
      // puase animation
   }
});

mi enlace jsfiddle aquíhttps://jsfiddle.net/gamss0wa/6/

Respuestas a la pregunta(1)

Su respuesta a la pregunta