Hi,
I would like to know if it’s possible to do a vertical slide slide animation from the top to the bottom and from the bottom to the top ? and how to do it ?
Yep, you can use
some.show({
type:"slide",
direction:"top"
});
or
some.show({
type:"slide",
direction:"bottom"
});
OK it’s works nice, thanks.