JSFiddle - React, Tailwind, and code Playground
by Ali Khaled
HTML
<IMG class="airplane" src="http://www.icone-png.com/png/26/25774.png" alt="Airplane" height="180" width="180">
CSS
html, body { height: 100%; width: 100%;}
body {
background-image: url('http://assets4.domestika.org/project-items/000/326/204/europa_skyline-big.jpg?1358254576?w=700&h=500');
background-repeat: repeat-x;
}
IMG.airplane {position: relative;
top: -50px;
display: block;
margin-left: auto;
margin-right: auto
JavaScript
$(function(){
var x = 0;
setInterval(function(){
x+=1;
$('body').css('background-position', x + 'px 0');
}, 1);
})