Does anyone want us to program a clean preloader into our webflow page?

Does anyone want us to program a clean preloader into our webflow page?

I’ve spent the last few days trying to find a good preloader here in the forum. The preloaders that I can create directly in Webflow don’t work for me the way a preloader should work. Especially when you have loaded the entire page, the next reload shouldn’t take as long, but should be in the cache. I don’t have that feeling with this type of preloader. It always charges just as long.

We’re not just developers, that’s my question.

regards
Toby

Hello @Toby,
Hope you are doing well!!
I’d Glad to assist you.
PM Sent with details, please check.
Thanks and Regards
Carter W

Hello @Toby,

Maybe you could use some pure javascript readyState method to detect when your page is fully loaded and trigger your animation accordingly.

switch (document.readyState) {
  case "loading":
    // The document is still loading.
    break;
  case "interactive":
    // The document has finished loading. We can now access the DOM elements.
    // But sub-resources such as images, stylesheets and frames are still loading.
    break;
  case "complete":
    // The page is fully loaded.
    break;
}

Hi anthonysalamin,

Thank you for your tip. But I’m a designer who has next to no idea about coding. I read this script like a math formula, look at it and only see XXX :slight_smile:

I’m looking for a workaround that I can create step by step in Webflow. Unfortunately, I haven’t found anything here yet, so I can understand that.