I have a slideshow on my home page it takes about 5 seconds to load the first image on a mobile can anyone help with maybe a wait loading ?

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);
}
});