Preloader

HTML

<div class="js"><!--this is supposed to be on the HTML element but codepen won't let me do it-->
  <body>
    <div id="preloader">
  <div id="loader"></div>
</div>
    <div id="status">
    
   
    <h1>SUPER SIMPLE FULL PAGE PRELOADER</h1>
    <p>Works with modernizr, or you could just add your own js class to the html element using javascript</p>
    <p>You can make it fit your site better by generating your own image here: http://ajaxload.info/ then change the background color in the css</p>
    <p>The example below doesn't fade out because the pageload event isn't fireing I'm guessing?  Anyway you can see it fading and showing content by visiting pages on mimoYmima.com</p>
     </div>
  </body>
</div>

CSS

body {
  background-color: black;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

JavaScript

$(window).load(function() {
  $("#status").delay(1400).fadeOut("slow");
  $("#preloader").delay(1400).fadeIn("slow");
});