Tutorial

Creating a Custom Loading Screen in Angular

Published on March 6, 2017
Default avatar

By Alligator.io

Creating a Custom Loading Screen in Angular

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

By default Angular apps show a small unstyled Loading… at the top left corner of the browser when first loading and bootstrapping the main app component. We can easily change that default loading indicator to pretty much whatever we want.

The following works for any Angular 2+ app.

Here’s what our loading screen will look like:

Custom Angular loading screen

The example is a little over the top with the salmon-colored background and all, but it’s a good example of what can easily be done.

Content in Root Component Tags

Notice how, in your app’s main index.html file, the default Loading… is just inserted between the app’s root component tags:

index.html
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Fancy Loading Screen</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>

  <app-root>Loading...</app-root>

</body>
</html>

And if you inspect your app after it’s fully loaded, that Loading… text is nowhere to be found, because it gets completely replaced with the content of the root component’s template.

That means that we can put anything between these tags, including style definitions and it’ll be completely wiped out once Angular has finished loading and bootstrapping the root component:

<app-root>
  <style>
    app-root {
      color: purple;
    }
  </style>
  I'm a purple loading message!
</app-root>

We don’t have to worry about these styles affecting our app after it’s loaded because everything gets completely discarded.


Now you can go crazy there and do just about anything. An idea would be to include some kind of CSS or SVG spinner.

Here in our example, we give our page a pink background, we center our loading message with Flexbox, give it a prettier system font, and we even add a fancy animation to the ellipsis:

<app-root>
  <style>
  app-root {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    color: pink;
    text-transform: uppercase;
    font-family: -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen-Sans,
        Ubuntu,
        Cantarell,
        Helvetica,
        sans-serif;
    font-size: 2.5em;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  }
  body {
    background: salmon;
    margin: 0;
    padding: 0;
  }

  @keyframes dots {
    50% {
      transform: translateY(-.4rem);
    }
    100% {
      transform: translateY(0);
    }
  }

  .d {
    animation: dots 1.5s ease-out infinite;
  }
  .d-2 {
    animation-delay: .5s;
  }
  .d-3 {
    animation-delay: 1s;
  }
  </style>

  Loading<span class="d">.</span><span class="d d-2">.</span><span class="d d-3">.</span>
</app-root>

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about us


About the authors
Default avatar
Alligator.io

author

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
 
Leave a comment


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel