Trying to animate a background in a slider similar to this website - http://www.legworkstudio.com/
I'm using a plugin called fullpage.js which adds a class "fp-viewing-#" to the body depending on which slide is selected (starting at 0).
I can't seem to figure out why the lines below don't work. I've tried both .animate + .css to do this.
if ($("body").hasClass("fp-viewing-1")) {
$("body").animate({"background" : "red"}, 2000);
}