Page loading effects with progressive enhancement

With growing support for CSS transitions and keyframe animations it’s become more common to see websites adopt a variety of effects, such as fades or motion, on page load to create a more visually dynamic website.

It’s hard to argue that done right these effects don’t delight new users, at least while such effects aren’t ubiquitous throughout the web. But many examples rely on JavaScript to make these elements appear with default CSS setting the opacity of some or all elements to zero. The result being a blank page if the JavaScript doesn’t load properly.

Further Reading: I Used The Web For A Day With JavaScript Turned Off

Is progressive enhancement worth it?

If you look at the direction of the web currently you’d think that as an industry the decision has been made that the web can no longer evolve whilst still accommodating <noscript> users. Not only is the problem at the centre of this post indicative of this but the popularity of JavaScript frameworks like React and Vue.js suggest an increasing reliance on JavaScript.

The 0.2% of UK <noscript> web users is too small a percentage to invest the time and money to provide even the most basic experience to.

Though this statement may make business sense it doesn’t account for those instances where people have JavaScript enabled but where it fails to load for some reason. Not to mention, as we’ll discover, the number of users with browsers that do not support CSS transitions or keyframe animations that are frequently required by these techniques.

For web applications using React et al the conversations required are far more complex, however for websites that are built more simply it’s a genuine question as to whether the benefits of these visual flourishes outweigh the disadvantages, especially when the greatest of these is a completely blank website.

Disclaimer: Without understanding the requirements, limitations and a whole host of other factors I can’t say that a website/agencies decision to not provide a fallback for <noscript> users is justified or not. Only that this decision, or lack of same, will negatively affect some users critically.

Can it be done?

The crux of the problem is that to avoid a flash of content, which disappears and then reappears when the JavaScript loads, developers will implement opacity:0 throughout their CSS. This removes this flash of content but also means if you deactivate JavaScript these elements will never become visible.

This problem has been swirling around my head for a while, but I never seemed to nail down a possible solution… until now.

Step 1 – opacity:1 on load

For some years I’ve adopted a non-js/js class switcher in order to style elements based on whether JavaScript has loaded or not. This seems like a good starting point for our solution. Traditionally I’ve implemented this as part of an external file, so let’s start here.

See the Pen Animation – Step 1 by Kean Richmond (@keanr) on CodePen.

Disclaimer: With codepen you’ll have to assume the HTML is requesing an external JavaScript file

We’re then using opacity:0 in conjunction with our .js class so only users with JavaScript enabled would see the content fade and move into position.

So far so good. But throw in a defer attribute and we‘re back to getting the flash of text we need to avoid.

Note: Using a throttled connection, and adding a number of images into your test page, is the best way to test if you’re getting this flash.

Step 2 – inline JavaScript

So our class switcher needs moving, in this instance to the top of our <head> to ensure it runs first and without delay. An external render-blocking file could be used but at a few lines of code, inline seems like the way to go.

See the Pen Animation – Step 2 by Kean Richmond (@keanr) on CodePen.

This works great. <noscript> users get the website acting as if there were no animation and our JavaScript users get the animation on load.

Note: There’s two points in the loading sequence we can enact our animation. This is either when all assets of the website are loaded, or when the DOM Tree has been loaded (and before external assets, including images, have). Which of these you chose will depend on if having external assets not loaded at the point you start your animation is going to cause problems.

Step 3 – more inline JavaScript

I believe we have a solution for <noscript> users, but what about those users where the JavaScript file fails to load or contains an error that stops our code from running. Again, we need to look at taking the external file out of the equation.

Initially placing this at the bottom of the website makes sense as a way to collate similar code in one place. But as we’re trying to find a solution that is fault tolerant there’s always a risk that the code could break at any point between our rendered element and the bottom of the file. While these are the kinds of errors usually caught and fixed in development, let’s run with this.

See the Pen Animation – Step 3 by Kean Richmond (@keanr) on CodePen.

Rather than have our function that adds a .loading class into our content in an external file, we have created a short function in the <head> of our file which we call directly after our element has rendered almost guaranteeing this to run.We now have a solution that covers <noscript> users, external JS file failures and server side errors that may cut our page in half.

Step 4 – old browsers

Remember that I mentioned some browsers will not support CSS transitions or Keyframe animations? In our examples we’re using keyframe animations to make our elements appear, and when a browser does not support these we’re left once again with a blank page.

The main browsers that don’t support these are Internet Explorer 9 and below and Opera Mini, the latter of which has a 2.1% global share. But they do support JavaScript.

See the Pen Animation – Step 4 by Kean Richmond (@keanr) on CodePen.

Our solution, up till now, is to add a .loaded class to our element which triggers the animation in our CSS that makes the element visible. To cover for these old browsers which lack CSS support but support JavaScript is to use the .loaded class to make the element appear and then within our keyframe animation to have it instantly disappear, and appear through the course of the animation.

Yes, we’re really playing some hard core hide and seek with this element over its lifetime.

The impact of working this way is that we can no longer use animation-delay as this will create a noticeable flash of the content appearing. But with keyframe animations we can repeat the initial hidden state, in this example that’s at 10%, which works out at 0.15 seconds.

Did I do it?

The code you’ll have seen above is a very simple example, written and tested in no more than a couple of hours and won’t necessarily work in all use cases. It certainly doesn’t take into account user scrolling, though the Interaction Observer API may offer a suitable solution that integrates with the above code rather easily.

What I’m getting at is this is just an experiment, not yet used in a rich and fully functioning website and certainly not some ground breaking solution. So far it certainly seems like a workable and better solution than ignoring progressive enhancement altogether. But it’s simplicity has me thinking there’s either a gremlin I’ve yet to spot, or I’m observing a problem that isn’t as widespread as it appears to me.

Those who dig deeper into how browsers load and render pages may take issue and find fault with this game of hide and seek being played or know of instances where the content may still flash into view when we’d worked to avoid this. But for now it seems like a pretty solid solution, relatively simple to implement at small scales.

If you do have anything to add to the conversation, such as a better or more tested solution, leave a comment below.


We'd love to hear from you!

If you think Bronco has the skills to take your business forward then what are you waiting for?

Get in Touch Today!

Discussion

Add a Comment