JSAnimation
HTML
<div id="book" style="position: absolute; left: 0px;">
Click here
</div>
JavaScript
function anim() {
$('#book').animate({
left: '+=100%'
}, 8000, 'linear', function() {
$('#book').css("right", "0");
anim();
});
}
anim();