JSFiddle - React, Tailwind, and code Playground

by lottikarotti

HTML

<script src="http://dl.dropboxusercontent.com/u/57502/jquery.color.js"></script>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<body>
    content
</body>

CSS

body{
    color: #fff;
    background-color: #333;
    
    /** http://caniuse.com/#search=transition */
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

body.animate{
    color: #333;
    background-color: #fff;
}

JavaScript

$(document).ready(function(){
    $('body').addClass('animate');
});