Documentation ¶
Index ¶
- func NewInBack(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInBounce(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInCircular(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInCubic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInElastic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInExponential(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutBack(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutBounce(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutCircular(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutCubic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutElastic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutExponential(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutQuadratic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutQuartic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutQuintic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInOutSine(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInQuadratic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInQuartic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInQuintic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewInSine(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewLinear(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutBack(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutBounce(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutCircular(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutCubic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutElastic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutExponential(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutQuadratic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutQuartic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutQuintic(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewOutSine(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
- func NewRandom(duration time.Duration, startValue, endValue float64, onStepFunc interface{}, ...) *easingTween.Tween
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewInBack ¶
func NewInBack( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInBack
English: Ease tween in back
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in back
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInBounce ¶
func NewInBounce( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInBounce
English: Ease tween in bounce
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in bounce
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInCircular ¶
func NewInCircular( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInCircular
English: Ease tween in circular
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in circular
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInCubic ¶
func NewInCubic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInCubic
English: Ease tween in cubic
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in cubic
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInElastic ¶
func NewInElastic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInElastic
English: Ease tween in elastic
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in elastic
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInExponential ¶
func NewInExponential( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInExponential
English: Ease tween in exponential
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in exponential
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutBack ¶
func NewInOutBack( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutBack
English: Ease tween in out back
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out back
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutBounce ¶
func NewInOutBounce( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutBounce
English: Ease tween in out bounce
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out bounce
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutCircular ¶
func NewInOutCircular( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutCircular
English: Ease tween in out circular
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out circular
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutCubic ¶
func NewInOutCubic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutCubic
English: Ease tween in out cubic
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out cubic
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutElastic ¶
func NewInOutElastic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutElastic
English: Ease tween in out elastic
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out elastic
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutExponential ¶
func NewInOutExponential( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutExponential
English: Ease tween in out exponential
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out exponential
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutQuadratic ¶
func NewInOutQuadratic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutQuadratic
English: Ease tween in out quadratic
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out quadratic
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutQuartic ¶
func NewInOutQuartic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutQuartic
English: Ease tween in out quartic
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out quartic
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutQuintic ¶
func NewInOutQuintic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutQuintic
English: Ease tween in out quintic
duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português: Facilitador de interpolação in out quintic
duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInOutSine ¶
func NewInOutSine( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInOutSine
English:
Ease tween in out sine Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação in out sine Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInQuadratic ¶
func NewInQuadratic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInQuadratic
English:
Ease tween in quadratic Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação in quadratic Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInQuartic ¶
func NewInQuartic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInQuartic
English:
Ease tween in quartic Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação in quartic Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInQuintic ¶
func NewInQuintic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInQuintic
English:
Ease tween in quintic Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação in quintic Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewInSine ¶
func NewInSine( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewInSine
English:
Ease tween in sine Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação in sine Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewLinear ¶
func NewLinear( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewLinear
English:
Ease tween linear. Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: this; args[1]: x; args[2]: y}
Português:
Facilitador de interpolação linear. Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: this; args[1]: x; args[2]: y}
func NewOutBack ¶
func NewOutBack( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutBack
English:
Ease tween out back Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação out back Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutBounce ¶
func NewOutBounce( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutBounce
English:
Ease tween out bounce Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação out bounce Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutCircular ¶
func NewOutCircular( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutCircular
English:
Ease tween out circular Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação out circular Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutCubic ¶
func NewOutCubic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutCubic
English:
Ease tween out cubic Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação out cubic Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutElastic ¶
func NewOutElastic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutElastic
English:
Ease tween out elastic Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação out elastic Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutExponential ¶
func NewOutExponential( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutExponential
English:
Ease tween out exponential Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação out exponential Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutQuadratic ¶
func NewOutQuadratic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutQuadratic
English:
Ease tween out quadratic Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação out quadratic Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutQuartic ¶
func NewOutQuartic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutQuartic
English:
Ease tween out quartic Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação out quartic Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutQuintic ¶
func NewOutQuintic( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutQuintic
English:
Ease tween ease out quintic Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação ease out quintic Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewOutSine ¶
func NewOutSine( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewOutSine
English:
Ease tween ease out sine Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação ease out sine Entrada: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
func NewRandom ¶
func NewRandom( duration time.Duration, startValue, endValue float64, onStepFunc interface{}, loop int, arguments ...interface{}, ) *easingTween.Tween
NewRandom
English:
Ease tween random Input: duration: animation duration startValue: initial value endValue: final value onStepFunc: on step function loop: number of loops or -1 for infinite loops arguments: array of arguments passed for functions onStart, onEnd, onInvert and onStep. Example: ..., [arguments] x, y) will be onStartFunc(value, args...) { args[0]: x; args[1]: y}
Português:
Facilitador de interpolação random Input: duration: duração da animação startValue: valor inicial endValue: valor final onStepFunc: função para o evento passo loop: número de interações ou -1 para um número infinito de interações arguments: array de argumentos passados para as funções onStart, onEnd, onInvert e onStep. Exemplo: ..., [argumentos] x, y) será onStartFunc(value, args...) { args[0]: x; args[1]: y}
Types ¶
This section is empty.
Source Files ¶
- newInBack.go
- newInBounce.go
- newInCircular.go
- newInCubic.go
- newInElastic.go
- newInExponential.go
- newInOutBack.go
- newInOutBounce.go
- newInOutCircular.go
- newInOutCubic.go
- newInOutElastic.go
- newInOutExponential.go
- newInOutQuadratic.go
- newInOutQuartic.go
- newInOutQuintic.go
- newInOutSine.go
- newInQuadratic.go
- newInQuartic.go
- newInQuintic.go
- newInSine.go
- newLinear.go
- newOutBack.go
- newOutBounce.go
- newOutCircular.go
- newOutCubic.go
- newOutElastic.go
- newOutExponential.go
- newOutQuadratic.go
- newOutQuartic.go
- newOutQuintic.go
- newOutSine.go
- newRandom.go