vue-grid-layout
vue-grid-layout copied to clipboard
How do I control the animation when I render for the first time
If you have a feature request, please try to implement it before requesting it.
This is free software and the author is busy with other projects.
Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Describe the solution you'd like A clear and concise description of what you want to happen.
Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.
Additional context Add any other context or screenshots about the feature request here.
You can overwrite the default behavior:
.vue-grid-layout {
transition: none;
}
.vue-grid-item {
transition: none;
}
and then after first draw, apply rules with transition activated...