We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would be nice to have some tools to help with describing transitions with behaviors. I imagine an API like this:
const config = { duration: 5, timingFunction: linear, delay: 0 } const t = transitionBehavior(config, numberStream, initialValue);
numberStream is telling which values the resulting behavior should make transitions to.
numberStream
This together with a collection of timing functions would be a good start.
The text was updated successfully, but these errors were encountered:
What is the initial value of the behavior returned by transitionBehavior?
transitionBehavior
Sorry, something went wrong.
In my example, it is the 3rd argument, which has to be a number
No branches or pull requests
I would be nice to have some tools to help with describing transitions with behaviors. I imagine an API like this:
numberStream
is telling which values the resulting behavior should make transitions to.This together with a collection of timing functions would be a good start.
The text was updated successfully, but these errors were encountered: