@ng-doc/ui-kit
Version:
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>
68 lines (65 loc) • 1.66 kB
JavaScript
const dropdownOpenAnimation = [
[
{ transform: 'scale(0.9)', opacity: 0 },
{ transform: 'scale(1)', opacity: 1 },
],
{
duration: 120,
easing: 'cubic-bezier(0.25, 0.8, 0.25, 1)',
},
];
const dropdownCloseAnimation = [
[
{ transform: 'scale(1)', opacity: 1 },
{ transform: 'scale(0.9)', opacity: 0 },
],
{
duration: 120,
easing: 'cubic-bezier(0.25, 0.8, 0.25, 1)',
},
];
const tooltipOpenAnimation = [
[
{ transform: 'scale(0.8)', opacity: 0 },
{ transform: 'scale(1)', opacity: 1 },
],
{
duration: 120,
easing: 'cubic-bezier(0.25, 0.8, 0.25, 1)',
},
];
const tooltipCloseAnimation = [
[
{ transform: 'scale(1)', opacity: 1 },
{ transform: 'scale(0.8)', opacity: 0 },
],
{
duration: 120,
easing: 'cubic-bezier(0.25, 0.8, 0.25, 1)',
},
];
const notificationOpenAnimation = [
[
{ transform: 'scale(0.7)', opacity: 0 },
{ transform: 'scale(1)', opacity: 1 },
],
{
duration: 120,
easing: 'cubic-bezier(0.25, 0.8, 0.25, 1)',
},
];
const notificationCloseAnimation = [
[
{ transform: 'scale(1)', opacity: 1 },
{ transform: 'scale(0.7)', opacity: 0 },
],
{
duration: 120,
easing: 'cubic-bezier(0.25, 0.8, 0.25, 1)',
},
];
/**
* Generated bundle index. Do not edit.
*/
export { dropdownCloseAnimation, dropdownOpenAnimation, notificationCloseAnimation, notificationOpenAnimation, tooltipCloseAnimation, tooltipOpenAnimation };
//# sourceMappingURL=ng-doc-ui-kit-animations.mjs.map