Revolution Slider Stop Hover

Hello, 

I do not understand why the text disappears in "stop hover" mode.


Setting : 



image


with this java :


revapi15.on('mouseenter mouseleave', function(event) {
 
    var action = event.type === 'mouseenter' ? 'pause' : 'resume';
    jQuery('.tp-caption').each(function() {
 
        var anime = jQuery(this).data('timeline');
        if(anime) anime[action]();
 
    });
 
});

Comments

Sign In or Register to comment.