I've got this jQuery rule to set .preloader to display none
$(".preloader").css("display", "none");
I How ever I want it to disappear with fade out effect and also while it's fading zoom out, I don't know how to do zoom out effect, but I tried applying this to make it fade out
$(".preloader").css("display", "none").fadeOut("200");
How ever that didn't work. Can you please suggest how to achieve those two effects? Also, will solution work vice versa? (fade it in, and zoom it in until it's original sizes)