I am looking to use jquery and css3 to animate the movement of a div tag to a different spot on the page, rather than shifting it instantly.
Let's say I have the following:
<div>
<div class='item' style='float:left;'>1</div>
<div class='item' style='float:left;'>2</div>
<div class='item' style='float:left;'>3</div>
</div>
My goal is to move the first div item (with innertext 1
) to the bottom, rearranging it like so:
<div>
<div class='item' style='float:left;'>2</div>
<div class='item' style='float:left;'>3</div>
<div class='item' style='float:left;'>1</div>
</div>
Does anyone know how I can achieve this effect?
Thank you!