I'd like to show/hide button/component on event
Apperyio('button_name').show();
This works, but is it possible to apply effect, such as "slideup", "fade", etc?
Thanks
I'd like to show/hide button/component on event
Apperyio('button_name').show();
This works, but is it possible to apply effect, such as "slideup", "fade", etc?
Thanks
Figured it out :
Apperyio('component_name').slideDown(500);
Easier than I thought