jQuery Flip Plugin:在鼠标离开时翻转一次div(Diff内容)/在鼠标离开时翻转

时间:2012-01-19 18:28:01

标签: jquery jquery-plugins mouseenter mouseleave

一直在寻找解决方案,但无法掌握或找到它。 我开始使用hover-quickflip plugin。 但它与我页面上的其他脚本相互冲突。 +你没有和配置div /翻页内容

任何人都可以帮忙!

我用过这个,但它只是在悬停时旋转,也许这只需要一点调整

$(document).ready(function(){

  $('.sponsorFlip').hover(function(){
    // $(this) point to the clicked .sponsorFlip element (caching it in elem for speed):

    var elem = $(this);
        // Using the flip method defined by the plugin:

        elem.flip({
            direction:'lr',
            speed: 350,
            onBefore: function(){
                // Insert the contents of the .sponsorData div (hidden
                // from view with display:none) into the clicked
                // .sponsorFlip div before the flipping animation starts:

                elem.html(elem.siblings('.sponsorData').html());
            }

        });

  }, function() {$(this).revertFlip();});

});

0 个答案:

没有答案