I am using jquery flippy plugin to use flip effect on an image. Few other plugins like in this answer serve the same purpose. I am using hover as opposed to click as given in demo to initiate the flip effect and revert the effect on mouse-out. Downside of using hover is that effect is initiated and will finish the cycle even if mouse pointer is on div even for fraction of second.
So is there any way I can stop this behavior:
- By stopping the transition in between and retain to original state on mouse out by using callback functions supported by plugin.
- By accelerating the speed of transition(or starting/ending effect with ease) with time so that if mouse is there for a fraction of second, the effect will start with very slow speed and on reverting back to original position there won't be much displacement, hence giving back the rich user experience.
If yes, how ? Or any other suggestions to stop the flip cycle in between.