JSFiddle - React, Tailwind, and code Playground
HTML
<div class = gamer> </div>
CSS
.gamer {
position: absolute;
top: 50%;
width: 50px;
height: 50px;
background-color: red;
}
JavaScript
$(document).keydown(function(event) {
if(event.which == 37) {
$(".gamer").animate({"left" : "-=50px"});
}
});
$(document).keydown(function(event) {
if(event.which == 39) {
$(".gamer").animate({"right" : "-=50px"});
}
});