JQuery Change Position Animate
$("#Friends").animate({
top: "-=30px",
}, duration );
Poised Piranha
$("#Friends").animate({
top: "-=30px",
}, duration );
1
2
3
4
5
6
7
$( "p" ).animate({
height: 200,
width: 400,
opacity: 0.5
}, 1000, "linear", function() {
alert( "all done" );
});