Giter Site home page Giter Site logo

Comments (2)

c-vetter avatar c-vetter commented on July 29, 2024

Hi Jason 🙂
Thank you for setting aside a page to investigate the issue, that's really helpful 👍

Regarding your FOUC: I could reproduce it unreliably. What I could see, however, is this: When throttling to GPRS, your main assets load in this order:

  • combined.css
  • jquery.js
  • grouped.js

Without throttling, the order is such:

  • jquery.js
  • grouped.js
  • combined.css

I could even observe combined.css getting loaded after the document's load event.

So, it looks like you trigger the transition from spinner to normal view in grouped.js before combined.css has finished loading, which will cause a FOUC. This is no bug in loadCSS, which looks to be working fine.

You have several options:

  • make your script aware of your stylesheet's load-completion
  • extent your <style> to include the critical styles for l-wrapper
  • load the stylesheet synchronously
  • inline all your styles

Seeing as you have a one-pager here, I'd just inline your stylesheets. That way you prevent any FOUC, have one less HTTP request, and can leave out the loadCSS overhead.

Hope this helps 🙂👍


By the way: I'd also hide l-wrapper in such a way that the page doesn't scroll until page-loader is removed. Alternatively, make page-loader position: fixed instead of position: absolute.

from loadcss.

jasonmevius avatar jasonmevius commented on July 29, 2024

Thank you so much for the insightful feedback. I'm investigating now and may come back with follow-up questions. Greatly appreciated!

from loadcss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.