class Transition.TransitionTimingDSL
| Type Params | Return Type | Name and description | 
|---|---|---|
|  | TransitionDelayDSL | cubicBezier(def n1, def n2, def n3, def n4)Lets you define your own values in a cubic-bezier function | 
|  | Transition.TransitionTimingDSL | delay(def delayValue) | 
|  | TransitionDelayDSL | ease(def delayValue)Specifies a transition effect with a slow start, then fast, then end slowly (this is default) | 
|  | TransitionDelayDSL | easeIn(def delayValue)Specifies a transition effect with a slow start | 
|  | TransitionDelayDSL | easeInOut(def delayValue)Specifies a transition effect with a slow start and end | 
|  | TransitionDelayDSL | easeOut(def delayValue)Specifies a transition effect with a slow end | 
|  | TransitionDelayDSL | linear(def delayValue)Specifies a transition effect with the same speed from start to end | 
|  | TransitionDelayDSL | timingFunction(TransitionTimingFunction ttf)Specify the timing-function using the given enum. | 
Lets you define your own values in a cubic-bezier function
Specifies a transition effect with a slow start, then fast, then end slowly (this is default)
Specifies a transition effect with a slow start
Specifies a transition effect with a slow start and end
Specifies a transition effect with a slow end
Specifies a transition effect with the same speed from start to end
Specify the timing-function using the given enum.