Create a full-screen website pre-loader in a jiffy

JQuery at your service…

Vaibhav Khulbe
Udacity Google India Scholars
4 min readSep 23, 2018

--

Oh damn, how creative is that! GIF credits: GIPHY.

I hope most of you have seen those (almost) never-ending loading indicator icons. Yeah, good internet connection is a must. They were quite boring, circular (as shown in the image above) and greyish, not even coloured! Hah. These days, on the modern websites that are made on frameworks rather than just HTML/CSS/JS, which are reactive, have a really cool animation for the same website loaders. Some use vectors, some use texts, some even use a video which fades out quite soothingly. Check out the Chrome Experiments website, you’ll get to know what I mean. How about making one? Let’s make our very own full-screen website pre-loader.

What will I make?

This:

Not this:

Heck! What was that? GIF credits: GIPHY.

What’s a website pre-loader❔

Simple.

This component of a website shows up until the rest of the webpage loads in background. They can be text-based (which we’ll make), simple animations, a text with a sound or any vector graphic like the company’s logo. Essentially, the main task of a pre-loader is to show these cool stuff when the webpage is loading so that the user knows that the website is loading (and hasn’t crashed).

This also keeps the visitor entertained, who knows, we can have a pre-loader which displays jokes…

What a pre-loader does❔

In its most basic form, it displays a circular or moving stripes along with the text which shows how much percent of the website is loaded at that point of time. And yes, some of them are really interesting.

What will I need? 🛠️

  • H̸a̸m̸m̸e̸r̸ ̸a̸n̸d̸ ̸w̸r̸e̸n̸c̸h̸
  • Your already wonderful HTML, CSS and jQuery skills.
  • A text editor (I’ll be using VS Code just because for my last tutorial on variable fonts, I used it…I think VS Code is the one and only editor to love!)

Shall we, pre-load?

Let’s do a left to right load! GIF credits: GIPHY

Important thing first, grab the latest jQuery CDN from here. In the HTML, we’ll have these:

  1. The CDN <script> tag inside the <head> along with the style-sheet <link>.
  2. Inside the <body> we’ll make a <div> with class "loading-page”.
  3. Make another <div> which contains the actual text. That is, a <h1> and a <h2> tag which says “LOADED…”. Let this be the counter class.

Let’s come to the styling part before we dive into jQuery. Make sure you style according to these:

  1. For the body, add a background color, give it width and height of 100vwand 100vh receptively so that it covers the entire viewport. The overflowmust be set to hidden. This is so that if the browser’s window is clipped, the content will be invisible.
  2. For the loading-page class, add a lighter background color than the bodywith same width and height.
  3. Next, for both the loading-page and counter’s h1, add a top and leftof 50% with transform translate() property set to -50% for x and y-axes. Make sure that font-size is 300px with bolder weight and from top it’s -10px in margin.

Here’s the jQuery part then,

  1. Use the .ready() function to make it available after the document is loaded.
  2. Add a counter variable and set it to 0. This will take in the count of the total percentage. Higher the number, lower the percentage. We’ll also need a secondary counter, let’s call it c. This will be used later when we’ll increment the percent.
  3. Take a variable, say i, use the setInterval() function so that the following executes after a specific interval of time.
  4. Select the loading-page and counter h1 classes and use the .html()function to get the secondary c counter element.
  5. Now for the actual percentage, select only the loading-page class, use the .css() function to get its specified CSS property by passing the widthand % as its parameters so that it can calculate the total percent remaining to load.
  6. Increment both the c and counter variables because, why not?
  7. Now for the exception handling stuff, add an if condition. If the countergoes beyond 100, or is 101, then we can clearInterval().
  8. At last, for the .ready()’s time parameter, use a lower value like 35. More value will mean slow loading speed.

Time to save and run the code! You will get the same output provided that you followed each step. If now, here are some screenshots of the code:

HTML and jQuery code:

CSS code:

> Originally published at Codeburst.io.

Liked this story? Feel free to clap and motivate me to write more and better. Did I missed something? Any suggestions? The comment box below serves the exact purpose!

--

--

Vaibhav Khulbe
Udacity Google India Scholars

✦ Independent web developer/designer/blogger ✦ Framer Developer at Moving Rectangles ✦ Framer Expert & Partner | Advocate at 10x Designers