How To Get A Full, Seamless Rotation With Impress.js?
I'm using impress.js to create a 3D effect in which you are inside four pages, as if they were four walls in a room. To view the next page, a simple -90 degree rotation is used.
Solution 1:
As far as I know, this is a render engine limitation. Surprisingly, it occurs even when the rotation is > 360 degree. The only workaround I know is to do the animation in 3 steps:
- animate to 359.9 degree with transition.
- move to 0 degree with no transition.
- terminate the animation with a transition.
By the way, I'm not sure whether this can be easily done with impress.js. Maybe give it a try with 'invisible' steps ?
Post a Comment for "How To Get A Full, Seamless Rotation With Impress.js?"