JSFiddle - React, Tailwind, and code Playground

by Ali Khaled

HTML

<img 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;
    position: relative;
    top: -70px;
    right: 5px;
}
}

JavaScript

$(function(){
        var x = 0;
        setInterval(function(){
            x+=1;
            $('body').css('background-position', x + 'px 0');
        }, 1);
    })