ryfan

preloader.js

Aug 31st, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $(window).load(function() { // makes sure the whole site is loaded
  2. $('#status').fadeOut(); // will first fade out the loading animation
  3. $('#preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website.
  4. $('body').delay(350).css({
  5. 'overflow': 'visible'
  6. });
  7. })
Add Comment
Please, Sign In to add comment