UNPKG

md2

Version:

Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Chips(Tags), Collapse, Colorpicker, Data Table, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.

65 lines 2.31 kB
import { animate, state, style, transition, trigger, } from '@angular/animations'; /** * The following are all the animations for the md2-select component, with each * const containing the metadata for one animation. * * The values below match the implementation of the AngularJS Material md2-select animation. */ /** * This animation shrinks the placeholder text to 75% of its normal size and translates * it to either the top left corner (ltr) or top right corner (rtl) of the trigger, * depending on the text direction of the application. */ export var transformPlaceholder = trigger('transformPlaceholder', [ state('floating-ltr', style({ top: '-22px', left: '-2px', transform: "scale(0.75)" })), state('floating-rtl', style({ top: '-22px', left: '2px', transform: "scale(0.75)" })), transition('* => *', animate("400ms cubic-bezier(0.25, 0.8, 0.25, 1)")) ]); /** * This animation transforms the select's overlay panel on and off the page. * * When the panel is attached to the DOM, it expands its width 32px, scales it up to * 100% on the Y axis, fades in its border, and translates slightly up and to the * side to ensure the option text correctly overlaps the trigger text. * * When the panel is removed from the DOM, it simply fades out linearly. */ export var transformPanel = trigger('transformPanel', [ state('showing', style({ opacity: 1, minWidth: 'calc(100% + 32px)', transform: "scaleY(1)" })), transition('void => *', [ style({ opacity: 0, minWidth: '100%', transform: "scaleY(0)" }), animate("150ms cubic-bezier(0.25, 0.8, 0.25, 1)") ]), transition('* => void', [ animate('250ms 100ms linear', style({ opacity: 0 })) ]) ]); /** * This animation fades in the background color and text content of the * select's options. It is time delayed to occur 100ms after the overlay * panel has transformed in. */ export var fadeInContent = trigger('fadeInContent', [ state('showing', style({ opacity: 1 })), transition('void => showing', [ style({ opacity: 0 }), animate("150ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)") ]) ]); //# sourceMappingURL=select-animations.js.map