Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface TransitionCallbacks<E>

Type parameters

  • E: HTMLElement = HTMLDivElement

Hierarchy

Index

Properties

Optional onEnter

onEnter: EnterHandler<E>

An optional enter handler that can be used to determine additional transition styles if you need access to the DOM node to calculate those styles. This will also be fired for appear transitions.

This will be fired right after the transitionIn is set to true.

Optional onEntered

onEntered: EnterHandler<E>

An optional entered handler that can be used to determine additional transition styles if you need access to the DOM node to calculate those styles. This will also be fired for appear transitions.

This will be fired once the transition has finished.

Optional onEntering

onEntering: EnterHandler<E>

An optional entering handler that can be used to determine additional transition styles if you need access to the DOM node to calculate those styles. This will also be fired for appear transitions.

This will be fired almost immediately after the onEnter callback. However, if the repaint option was enabled, it will ensure the DOM as been repainted before firing to help with CSS transitions.

Optional onExit

onExit: ExitHandler<E>

An optional exit handler that can be used to determine additional transition styles if you need access to the DOM node to calculate those styles.

This will be fired right after the transitionIn is set to false.

Optional onExited

onExited: ExitHandler<E>

An optional entered handler that can be used to determine additional transition styles if you need access to the DOM node to calculate those styles. This will also be fired for appear transitions.

This will be fired once the transition has finished.

Note: If the temporary option was enabled, the rendered result will be false and the node actually won't exist in the DOM anymore.

Optional onExiting

onExiting: ExitHandler<E>

An optional exit handler that can be used to determine additional transition styles if you need access to the DOM node to calculate those styles.

This will be fired almost immdiately after the onExit callback. However, if the repaint option was enabled, it will ensure the DOM as been repainted before firing to help with CSS transitions.

Generated using TypeDoc