UNPKG

igniteui-webcomponents

Version:

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.

12 lines 377 B
import { EaseOut } from '../../easings.js'; import { animation } from '../../types.js'; const baseOptions = { duration: 350, easing: EaseOut.Quad, }; const scaleInCenter = (options = baseOptions) => animation([ { transform: 'scale(0)', opacity: 0 }, { transform: 'scale(1)', opacity: 1 }, ], options); export { scaleInCenter }; //# sourceMappingURL=index.js.map