Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IE & Edge Problem: Animation does not stop after mouse over #12

Open
darrudi opened this issue Oct 24, 2015 · 2 comments
Open

IE & Edge Problem: Animation does not stop after mouse over #12

darrudi opened this issue Oct 24, 2015 · 2 comments

Comments

@darrudi
Copy link

darrudi commented Oct 24, 2015

In IE 11.0 and Edge the animation does not stop even after the mouse leaves. Chrome, Firefox and Safari are fine.

In the attached images all the three icons in the bottom are all pulsating tough the mouse pointer is on top of neither one.

untitled

This is the jQuery snippet which adds the classes on page load:

$('a').children('i').parent().addClass('faa-parent animated-hover');
$('a i').addClass('faa-pulse faa-fast');
@Mr-Anonymous
Copy link

I found the same issue. I tried it from IE 11 and edge and I have animation on parent hover set-up. When the page loads, some of them starts animated and it doesnt stop even when mouse leaves from parent. Is there a css to completely disable this font-awesome animation for IE and edge?

@Mr-Anonymous
Copy link

Mr-Anonymous commented Mar 6, 2017

For now, I have disabled Parent Hover Animation completely in IE since that is the only browser that has issue with this. This is what I have added to my site script to disable it:

$(document).ready(function() {
   if (window.document.documentMode) {
        $('a').removeClass('faa-parent animated-hover');
   }
});

-- Neel.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants