I'm using the following jQuery command:
var timer1;
SemConflito("#lp-1").on('mouseover', function(){
clearTimeout(timer1);
timer1 = setTimeout(function(){
SemConflito("#lp-1-hover").stop().slideDown({duration: 400, easing: 'easeInCubic'}); }, 300);
});
The effect is simple, when the user places the mouse over the id id "lp-1", another div will appear with the "slidedown" effect. The problem is that it is catching the effect. The div comes up and hangs in the middle, does not quite appear. There are cases (like in Mozilla) that hardly the div appears.
I do not know what it is. I really need help.
Note: That "Unconflict" is a variable that I did:
var SemConflito = jQuery.noConflict();
Functional example: link
Explaining better how this effect works: on the site there is a part where 4 divs appear side by side. Each div with its own content. When the user hover over one of them, a new div descends upon the current one with new information. When the mouse exits, the div disappears. The problem is when the user passes the mouse on the div and goes to the other, and it seems to me that in this transition of movement, the height of the buga effect, causing the div only to "descend" to the height that was last time.
Maybe there's some more practical way or even a simple plugin for this.