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
The CSS needs to be applied immediately (in shared/transitions.js) if there's a delay:
-if ( intro && obj.tick ) obj.tick( 0 ); +if ( intro ) { + if ( obj.tick ) obj.tick( 0 ); + if ( obj.css ) node.style.cssText += ` ${obj.css( 0 )}`; +}
Would also need to remove the styles once the transition starts.
The text was updated successfully, but these errors were encountered:
apply t0 styles to nodes if css transition has delay. fixes #574
b831d6c
Merge pull request #601 from sveltejs/gh-574
31d8ef6
apply t0 styles to nodes if css transition has delay
Successfully merging a pull request may close this issue.
The CSS needs to be applied immediately (in shared/transitions.js) if there's a delay:
Would also need to remove the styles once the transition starts.
The text was updated successfully, but these errors were encountered: