http://www.w3.org/TR/css3-transitions/#transition-property
ease The ease function is equivalent to cubic-bezier(0.25, 0.1, 0.25, 1). linear The linear function is equivalent to cubic-bezier(0, 0, 1, 1). ease-in The ease-in function is equivalent to cubic-bezier(0.42, 0, 1, 1). ease-out The ease-out function is equivalent to cubic-bezier(0, 0, 0.58, 1). ease-in-out The ease-in-out function is equivalent to cubic-bezier(0.42, 0, 0.58, 1) step-start The step-start function is equivalent to steps(1, start). step-end The step-end function is equivalent to steps(1, end). steps(<integer>[, [ start | end ] ]?) Specifies a stepping function, described above, taking two parameters. The first parameter specifies the number of intervals in the function. It must be a positive integer (greater than 0). The second parameter, which is optional, is either the value ‘start’ or ‘end’, and specifies the point at which the change of values occur within the interval. If the second parameter is omitted, it is given the value ‘end’. cubic-bezier(<number>, <number>, <number>, <number>) Specifies a cubic-bezier curve. The four values specify points P1 and P2 of the curve as (x1, y1, x2, y2). Both x values must be in the range [0, 1] or the definition is invalid. The y values can exceed this range.
Enumerator |
---|
MO_INTERPOLATION_NONE |
|
MO_INTERPOLATION_LINEAR |
|
MO_INTERPOLATION_EASE |
|
MO_INTERPOLATION_EASEIN |
|
MO_INTERPOLATION_EASEOUT |
|
MO_INTERPOLATION_EASEINOUT |
|
MO_INTERPOLATION_STEPSTART |
|
MO_INTERPOLATION_STEPEND |
|
MO_INTERPOLATION_CUBICBEZIER |
|
MO_INTERPOLATION_EXPRESSION |
|
MO_INTERPOLATION_EASEINOUTQUAD |
|
MO_INTERPOLATION_EASEINOUTSIN |
|
MO_INTERPOLATION_EASEINOUTCUBIC |
|
Definition at line 159 of file moParam.h.