it looks like http://www.generalassemb.ly/ has set the container to 0 opacity, i’m just curious if it’s faded in by javascript or css3. seems like a great way to load a complete page.
it looks like http://www.generalassemb.ly/ has set the container to 0 opacity, i’m just curious
Share
as you can see in app.js it’s animating using jquery.
$(window).load(function() { $('#container').show(); $('#loading').animate({ opacity: 0 }, 200, function () { $('#loading').hide(); }); $("#container").animate({ opacity: 1 }, 1000); });