Hollow Man

<style>
.man {
    background-color: blue;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    text-align: center;
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.1.min.js"></script>
<script type="text/javascript">
$(function() {
    $('<div>', {'class': 'man', 'html': ' O <br>/|\<br>/`\'}).appendTo('body').animate({left: '+=500', opacity: 0}, 2500);
});
</script>
Vote up this code7