Strip Fade-In

Hey guys!

I’m looking for a way to make a strip fade-in on load, in exactly the same way that you’re able to make other elements fade-in via animation.

I don’t know whether this page could be of any help (HiddenMixin - Velo API Reference - Wix.com), but I have absolutely no idea how to use Wix Code, as I’m a complete newbie!

Just to clarify, I’m not looking for the scroll effect fade-in - I need the strip to fade into view by itself when the page loads.

If anyone could help me out with this, I’d be very grateful!

Cheers,

Lunathor

hi.

Hide the table in the properties menu then use the show() function with “fade” as the parameter to show it on page load:

$w.onReady(function () {
    $w('#strip1').show("fade");
});

Thank you!

Can I add code to make a strip downloadable?