How to add animations to expand mode?

Hello,
I know it’s not directly related to corvid but how can we add animations to the expand mode for images in wix editor? Images just blinks into it and a little delayed animation would be nice. However I could not find any tips on the subject. Thanks a lot!

What do you mean with —> “expand-mode”?

You can try something like:
Make them hidden AND collapsed on load:

// first set the effect options object
//Then, to expand:
$w("#box1").expand().then(() => $w("#box1").show("slide", slideOptions));
//to collapse:
$w("#box1").hide("slide", slideOptions).then(() => $w("#box1").collapse());