jquery - anumate
by Sergey Py
HTML
<div></div>
<div id="mover"></div>
<div></div>
CSS
div {
background:yellow;
width:80px;
height:80px;
margin:5px;
float:left;
}
JavaScript
$(document).ready(function(){
function animateIt() {
$("#mover").slideToggle("slow", animateIt);
}
animateIt();
});