I have 3 boxes that show/hide with animation options after a time out. My problem is that the show/hide of the boxes does a kind of ‘double take’. Each box show for a second, then hides and then shows again. I can’t figure out why? Any advice most appreciated. The code I am using is:
export function caboodle_viewportEnter(event) {
let zoomOptions = {
'duration': 2000,
'delay': 1000
};
setTimeout(function () {
$w("#caboodle1").show('zoom', zoomOptions);
}, 500);
setTimeout(function () {
$w("#caboodle2").show('zoom', zoomOptions);
}, 4000);
setTimeout(function () {
$w("#caboodle3").show('zoom', zoomOptions);
$w("#plans").show();
}, 7000);
}