23 lines
632 B
TypeScript
23 lines
632 B
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright Google LLC All Rights Reserved.
|
||
|
|
*
|
||
|
|
* Use of this source code is governed by an MIT-style license that can be
|
||
|
|
* found in the LICENSE file at https://angular.dev/license
|
||
|
|
*/
|
||
|
|
|
||
|
|
/** @docs-private */
|
||
|
|
export class AnimationCurves {
|
||
|
|
static STANDARD_CURVE = 'cubic-bezier(0.4,0.0,0.2,1)';
|
||
|
|
static DECELERATION_CURVE = 'cubic-bezier(0.0,0.0,0.2,1)';
|
||
|
|
static ACCELERATION_CURVE = 'cubic-bezier(0.4,0.0,1,1)';
|
||
|
|
static SHARP_CURVE = 'cubic-bezier(0.4,0.0,0.6,1)';
|
||
|
|
}
|
||
|
|
|
||
|
|
/** @docs-private */
|
||
|
|
export class AnimationDurations {
|
||
|
|
static COMPLEX = '375ms';
|
||
|
|
static ENTERING = '225ms';
|
||
|
|
static EXITING = '195ms';
|
||
|
|
}
|