JSFiddle - React, Tailwind, and code Playground

by lollero

HTML

<div>Lorem ipsum</div>

CSS

div { position: relative; }

JavaScript

var a = 0,
    b = 0;

function test( top, left ) {
    $('div').animate({ top: top , left: left  }, 2600);
}


if ( a === 1 ) {
    test( 100 );
}
else {
    test( 400, 300 );
}