Nodlik / react-pageflip

Simple React.js wrapper for StPageFlip library, for creating realistic and beautiful page turning effect
https://nodlik.github.io/react-pageflip/
MIT License
453 stars 90 forks source link

Animation Direction Option(Left/Right) #27

Open Kamalakar-Gavali opened 2 years ago

Kamalakar-Gavali commented 2 years ago

Hi It will be great if there is animation direction options. so we can set flip animation direction.

kkhys2 commented 2 years ago

I also feel the need for this option.

zsavicreative commented 2 years ago

@Kamalakar-Gavali @kkhys I also had a need for this, our solution was:

const onChangeState = (e) => {
    const direction = e.object.flipController.app.render.direction;
 }
kkhys2 commented 2 years ago

@zsavicreative

Thank you! I will try it as soon as I can.