Hi! I animated my #gallery1 so it fades in when the page loads. But when the animation finishes the image flashes in a weird way, and gives a bad impression to visitors. I have put my gallery inside a transparent strip, which triggers the gallery animation onViewportEnter. This is the code I used:
let fadeOptions = {
"duration": 1000
};
export function columnStrip3_viewportEnter(event) {
$w('#gallery1').show('fade', fadeOptions);
}
Any solutions to this? Thanks in advance.