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
No description provided.
The text was updated successfully, but these errors were encountered:
You can create a staggered div animation by adding delays to each div, here's an example:
<div> <img v-for="index in 5" :key="index" v-motion :initial="{ scale: 0, opacity: 0 }" :visible-once="{ scale: 1, opacity: 1 }" :delay="index * 200" /> </div>
Note the :delay="index * 200" which adds a longer delay for each following div, I've also created a demonstration here.
:delay="index * 200"
Closing this, let me know if you have any questions!
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: