CUSTOM PRELOADER SCREEN - VELO BY WIX
- eggwebtut
- Mar 10, 2021
- 1 min read
$w.onReady(() => {
waitForLoading();
});
export function button6_onClick() {
$w('#strip').show();
waitForLoading();
}
function waitForLoading() {
setTimeout(() => {
$w('#strip').hide('FadeOut');
}, 1500);
}
Comments