JSFiddle - React, Tailwind, and code Playground
by darkajax
HTML
<h1>Test</h1>
<h1>Test</h1>
<h1>Test</h1>
<h1>Test</h1>
<h1>Test</h1>
<h1>Test</h1>
JavaScript
function showPress( name ) {
var top = "15";
var bottom = "20";
$(name).hide();
$(name).show(150, function () {
$(this).animate({
"margin-top": "+="+top+"px",
"margin-left": "+="+bottom+"px"
}, 150, function () {
$(this).animate({
"margin-top": "-="+top+"px",
"margin-left": "-="+bottom+"px"
});
});
});
}
showPress("h1");