Delagardi,
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
.bg-image {position: relative;
width: 100%;
height: 470px;
background: url("http://www.adventuregamestudio.co.uk/images/games/709.jpg") center center;
overflow: hidden;
margin-bottom: 10px;
}
.block-list {
margin-left: 200px;
overflow: hidden;
}
.truck1 {
position: absolute;
width: 256px;
height: 256px;
left: 0;
top: 180px;
background: url("http://www.clipartbest.com/cliparts/dT6/aog/dT6aogaEc.png") no-repeat;
}
</style>
</head>
<body>
<div class="bg-image">
<div class="block-list">
<p><button id="go">Run »</button></p>
<div class="truck1"></div>
</div>
</div>
<script>$(document).ready(function() {
$("#go").click(function() {
$(".truck1").stop().animate({
left: "100%"
}, {
duration: 5000,
easing: "linear",
complete : function() {
$(this).css({left : -256 })
$("#go").click()
}
});
});
});
</script>
</body>
</html>