nnattawat / flip

A lightweight jQuery plugin to make 3D card flipping animation
Other
624 stars 312 forks source link

Force Flip to Front #110

Closed sanjshah closed 7 years ago

sanjshah commented 7 years ago

Hi,

I have ani issue when I view my pae on an iPad, my question is whether I can force the view (flip) to fron or back via javascript.

Any help is appreciated.

nnattawat commented 7 years ago

Yep

// flip to the front
$("#your_dom").flip(true);

// flip to the back
$("#your_dom").flip(false);
sanjshah commented 7 years ago

Thanks!