Skip to content Skip to sidebar Skip to footer

JQuery Quick Flip Switch Back

I'm using the jQuery plugin Quick Flip, but I'm having two issues with one of my pages. First, I want it to flip when the mouse hovers, which I've been able to do, but I'd also lik

Solution 1:

If you are using QuickFlip v2.1.1, then you have access to quickFlipper which gives you the functionality you want.

From this blog, Jon Raasch states that you can have the flip occur on the hover event by using the following code:

With $.quickFlipper() the flip can be called in the function of your choice. Let's say we want to trigger the flip effect on hover:

$('.quickflip-wrapper').hover( function(ev) {
    $(ev.target).quickFlipper();
});

Solution 2:

Felix answered my question with his comment:

http://jsfiddle.net/Ae9Lx/


Post a Comment for "JQuery Quick Flip Switch Back"