Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fade from one stylesheet to the other

I thought this might just be possible with jQuery or JavaScript - could someone tell me if it is possible to fade from one stylesheet's styles to another? If so, how would one do it?

Thank you!

like image 641
Jacques Blom Avatar asked Jun 11 '12 14:06

Jacques Blom


1 Answers

This is the best way I can think of:

$( body ).fadeOut( function() {
    // Switch the stylesheet
    // And then:
    $( this ).fadeIn();
} );
like image 118
Florian Margaine Avatar answered Sep 21 '22 15:09

Florian Margaine