$('<div></div>') .attr('id','result') .appendTo($('#test-place')); $('#result') .text('jQueryのanimate関数がすごい') .css('border','1px solid green') .css('width','300px') .css('text-align','center') .show('slow') .animate({marginLeft:'+=300px'},1000) .animate({marginTop:'+=150px'},1000) .animate({marginLeft:'-=300px'},1000) .animate({marginTop:'-=150px'},1000) .animate({marginLeft:'+=300px'