Last active
April 17, 2018 08:09
-
-
Save uryu-myao/6f3126a99820cfe20834a31fe7512f96 to your computer and use it in GitHub Desktop.
page loading control
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function () { | |
var h = $(window).height(); | |
$('.contents, #top').css('display','none'); | |
$('.load, load-logo').height(h).css('display','block'); | |
}); | |
$(window).load(function () { | |
$('.load').fadeOut(800); | |
$('.load-logo').fadeOut(300); | |
$('.contents, #top').css('display', 'block'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment