Skip to content

Navigation Transition Tile#


alt text A Tile that provides transition functions for navigation.

Description#

Description

Output#

No Transition#

Info
  • Return
    The transition function.
    
  • Description
    Switches screens instantly with no animation.
    

Fade#

Info
  • Return
    The transition function.
    
  • Description
    Shader to fade the screen in/out.
    

Swap#

Info
  • Return
    The transition function.
    
  • Description
    Implementation of the iOS swap transition.
    

Wipe#

Info
  • Return
    The transition function.
    
  • Description
    Shader to wipe the screens from right to left.
    

Fall Out#

Info
  • Return
    The transition function.
    
  • Description
    Transition where the new screen ‘falls’ from the screen centre, becoming smaller and more transparent until it disappears, and revealing the new screen behind it.
    

Rise In#

Info
  • Return
    The transition function.
    
  • Description
    Transition where the new screen rises from the screen centre, becoming larger and changing from transparent to opaque until it fills the screen.
    

Card Push Down#

Info
  • Return
    The transition function.
    
  • Description
    The previous screen does not move, and the new one slides in from the given direction. ‘push’ means the screen slides in in the given direction.
    

Card Push Up#

Info
  • Return
    The transition function.
    
  • Description
    The previous screen does not move, and the new one slides in from the given direction. ‘push’ means the screen slides in in the given direction.
    

Card Pop Down#

Info
  • Return
    The transition function.
    
  • Description
    The previous screen slides out, when the new screen is already on the position. ‘pop’ means the screen slides out in the given direction.
    

Card Pop Up#

Info
  • Return
    The transition function.
    
  • Description
    The previous screen slides out, when the new screen is already on the position. ‘pop’ means the screen slides out in the given direction.
    

Real Signature#

Signature

  • A plain language description of the function associated with the tile
    def SquareRoot(x):
        return math.sqrt(0)