JSFiddle - React, Tailwind, and code Playground

by Anna

HTML

<img src="http://itu.dk/people/akam/ta_challenge/hover-kitty.png" alt="Hover Kitty">

CSS

img {
	position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

JavaScript

$(document).ready(function(){

var hoverkitty = $("img");
   function hover() {
       hoverkitty.animate({left:'+=8'}, 500);
       hoverkitty.animate({left:'-=8'}, 500, hover);
   }

   hover();


});