Edit in JSFiddle

$(function(){
    $('button').click(function(){
        $('div').css({ top: 0, left: 0,width: 100 ,height:100 })
        .animate({left: 300},200)
        .animate({left: 300,top: 100},300)
        .animate({left: 0,top: 0,width: 10 ,height: 10 },600);
    });
});
<button>ボタン</button>
<div></div>
div{
    width:10px;
    height:10px;
    background:blue;
    color:#FFF;
position: relative;
}