JSFiddle - React, Tailwind, and code Playground

HTML

<div>contact</div>

CSS

div {
    position: fixed;
    right: -100px;
    top: 50%;
    margin-top: -50px;
    width: 100px;
    height: 100px;
    background: red;
}

JavaScript

$("div").animate({"right":500}, 700);