How to make a button appear with material design

126 Views Asked by At

How to make a button appear like in Topeka ? It should also hide when a parent is animating.

1

There are 1 best solutions below

1
On BEST ANSWER

Use this css:

:host(:not([animate])) paper-fab {
transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1) 500ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1);
transform: scale(1);
transform-origin: 50% 50%;
}
:host([animate]) paper-fab {
visibility: hidden;
transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1) 500ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1);
transform: scale(0);
transform-origin: 50% 50%;
}