How I create, flipping box

Add an embedded widget (iframe) to the page nd use one of the code example yu can find on Google,
for example:

and many more

Yeah TNX I found the way :+1:

There are also other ways how to generate flipping actions…

$w.onReady(function () {
    $w('#button1').onClick(async()=>{await $w('#button1').hide();
        $w('#button1').show('flip');
    });
});

By an usage of some combination, a full flipp-animation, should be possible.

Another idea would be to use the Wix-Animation-Api.

Of course you would have to expand this code, to get the wished function.