$('#box').animate({
left: '200px',
opacity: 0.5,
width: '300px'
}, 800, 'swing', function() {
console.log('Animation complete!');
});
// Queue multiple
$('#box').animate({ left: '200px' })
.animate({ top: '100px' })
.animate({ opacity: 0 });