JSFiddle - React, Tailwind, and code Playground
HTML
<div id="hue"></div>
CSS
* {
background: url(http://i.imgur.com/bMtV4.jpg);
height: 100%;
}
JavaScript
var elHue = document.getElementById('hue'),
x = 90;
(function rotateHue() {
elHue.style.webkitFilter = 'hue-rotate('+x+'deg)';
if((x+=3) > 359) {
x = 0;
}
webkitRequestAnimationFrame(rotateHue, elHue);
})();