I got this code working but the fade time takes about 10 seconds no mater how low i set it
import wixData from ‘wix-data’;
import wixWindow from ‘wix-window’;
$w.onReady(function ()
{
if (wixWindow.rendering.env === “browser”)
{
setTimeout(() => {$w(“#loadingGif”).hide(“fade”); }, 5000);
}
});