Skip to content

appAnimations

reference
1 min readUpdated

Kind: Constant

Source: Pams/Web/portal/pams-web/src/app/animations/index.ts (line 21)

Part of: Pams Web

Definition

ts
[

    trigger('animate', [transition('void => *', [useAnimation(customAnimation)])]),

    trigger('animateStagger', [
        state('50', style('*')),
        state('100', style('*')),
        state('200', style('*')),

        transition('void => 50',
            query('@*',
                [
                    stagger('50ms', [
                        animateChild()
                    ])
   …

Value

ts
[

    trigger('animate', [transition('void => *', [useAnimation(customAnimation)])]),

    trigger('animateStagger', [
        state('50', style('*')),
        state('100', style('*')),
        state('200', style('*')),

        transition('void => 50',
            query('@*',
                [
                    stagger('50ms', [
                        animateChild()
                    ])
   …

Used by

1 reference from 1 file. Each is a place in this repository where the symbol is actually used — go read one rather than trusting an example.

Imported by (1)

  • AppComponentPams/Web/portal/pams-web/src/app/app.component.ts:1

Was this page helpful?

Download as PDF