JSFiddle - React, Tailwind, and code Playground

HTML

<div class="indexHeader">
        <img src="http://vignette1.wikia.nocookie.net/fantendo/images/d/da/Mario_1_PMTMO.png/revision/latest?cb=20121014031724" class='deliveryMan' />
    </div>

CSS

.indexHeader{
    width:1102px;
    height:367px;
    background:url(http://img839.imageshack.us/img839/3298/indexheader2.png);
    overflow:hidden;  
}

.deliveryMan{
    position:relative;
    width:415px;
    height:520px;
    top:0px;
    left:450px;    
}

JavaScript

$('.deliveryMan').animate({
    'left': '+=310px',
    'top': '+=30px',
    'width': '275px',
    'height': '344px'    
}, 4000);