JSFiddle - React, Tailwind, and code Playground
by bingjie2680
HTML
<div id="scdiv">
sadfafs
</div>
CSS
#scdiv{
margin-top:70px;
}
JavaScript
$('#scdiv').click(function(){
$(this).animate({'margin-top': '-=5px'});
});
by bingjie2680
<div id="scdiv">
sadfafs
</div>
#scdiv{
margin-top:70px;
}
$('#scdiv').click(function(){
$(this).animate({'margin-top': '-=5px'});
});