animation completely using css, you can change the animation according to your wishes
[data-test="app-search-bar"] {
animation: slide-left 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="app-signing-in"] {
display: none;
}
[data-test="back-button"] {
animation: slide-left 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="nav-button-menu"] {
animation: slide-right 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="nav-button-Exit"] {
animation: slide-right 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="nav-button-Cancel"] {
animation: slide-right 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[aria-label="grid"] {
animation: slide-left 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[aria-label="flyout-menu"] {
animation: slide-right 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="app-simple-table"] {
animation: slide-up 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="app-summary"] {
animation: slide-up 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;;
}
[data-test="app-markdown-view"] {
animation: slide-up 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="nav-button-Search"] {
animation: slide-left 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="app-text-box"]{
animation: slide-down 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="tile-item"]{
animation: slide-down 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="list-item"]{
animation: slide-right 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="app-switch-view"]{
text-transform: capitalize;
animation: slide-up 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="app-button-view"]{
text-transform: capitalize;
animation: slide-up 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="app-hint"]{
animation: slide-up 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
[data-test="app-image-carousel"]{
animation: slide-up 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
.floating-btn-style{
animation: zoom-out 0.9s cubic-bezier(0.63, 0, 0.35, 1) both;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}}
@keyframes zoom-out {
from {
opacity: 0;
transform : scale(0)
}
to {
opacity: 1;
transform : scale(1)
}}
@keyframes slide-right {
from {
opacity: 0;
transform : translateX(-20px)
}
to {
opacity: 1;
transform : translateX(0px)
}}
@keyframes slide-left {
from {
opacity: 0;
transform : translateX(20px)
}
to {
opacity: 1;
transform : translateX(0px)
}}
@keyframes slide-down {
from {
opacity: 0;
transform : translateY(-20px)
}
to {
opacity: 1;
transform : translateY(0px)
}}
@keyframes slide-up {
from {
opacity: 0;
transform : translateY(20px)
}
to {
opacity: 1;
transform : translateY(0px)
}}```