presentation

Custom navigation transitions, animations and styles

Fields

typeenum

default, fullscreen, pop-in

styleenum

default, fade, flip

Popover transition only fields

snapPointsarray

Only available on popover transition type ['40%', '65%']

Basic Example usage of default presentation

{
  "transition": "default",
  "style": "default"
}

Example of fullscreen presentation

{
  "transition": "fullscreen",
  "style": "default"
}

Example of fullscreen and flip presentation

{
  "transition": "fullscreen",
  "style": "flip"
}

Example of pop-in and flip presentation

{
  "transition": "pop-in",
  "style": "default",
	"spanPoints": ['40%', '65%']
}