Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Fade from page to page + loading bar Reply To: Fade from page to page + loading bar

#251119
Shikkediel
Participant

One concern I have with that code is that if the javascript doesn’t fire, the page will be stuck on opacity: 0.

You could use a noscript fallback for that:

<head>

[basic stylesheet]

<noscript>
<style>
.page {
  opacity: 1;
}
</style>
</noscript>
</head>