I\'ve setup a jQuery function that changes the body background colour when a certain div comes into view, e.g. the body background colour is black, when #block-three>
#block-three>
You could use transition with CSS:
transition
body { background-color: black; transition:all 1s; }
The Demo Fiddle