Hey guys,
Does anyone know of a way to get Wix to identify that the playback of a Lottie animation has ended?
I need my animation to play once and then be hidden.
Currently, the code is as follows:
$w ( “#gOff” ). show ();
$w ( “#gOff” ). loop = false ;
$w ( “#gOff” ). play (() => {
$w ( “#gOff” ). hide ();
});