JSFiddle - React, Tailwind, and code Playground
by rpflorence
HTML
<script src="http://ryanflorence.com/forge/Element.GetUntil.js"></script>
<p id="foo">
I am foo. <br/>watch this.
</p>
CSS
p#foo {
background: #f0f0f0;
border: solid 1px #ccc;
font-size: 24px;
padding: 10px;
color: #585858;
position: absolute;
height: 50px;
}
body {
font-family: helvetica, arial;
}
JavaScript
$('#foo').animate({
left: 200,
top: ['200', 'easeOutBounce']
}, 2000);