This example demonstrates laymur-animations addon. Common UI animations like fade-in, slide-in, appear, disappear, call to action.
// Animate logotype appearing from bottom-left
UIAppearAnimator.appear(logotype, {
xFrom: -100,
yFrom: 100,
delay: 0.25,
duration: 0.5,
});
// Animate multiple elements together
UIAppearAnimator.appear([text, bubble], {
xFrom: -100,
yFrom: -50,
delay: 1.0,
duration: 0.5,
});