How to animate three images
Closed this issue · 2 comments
Deleted user commented
Hi, can you provide an example with 3 images?
acedigibits commented
I have a different question from example on site. i have 4 images and then want to animate from 1st to 2nd then from 2nd to third then from 3rd to 4th, then from 4th to 1st. i tried adding 2nd to 3rd transition by using animate [1,2] but its not transitioning to 3rd image.
jembezmamy commented
These factors work like this:
[1, 0, 0, 0] // first image
[0, 1, 0, 0] // second image
[0, 0, 1, 0] // third image
[0, 0, 0, 1] // fourth image
It's explained in the parrots example.