Aos: AOS IE (Internet Explorer) 10 not displaying HTML on Scroll - Opacity still 0

Created on 19 Sep 2016  路  17Comments  路  Source: michalsnik/aos

I have a problem with IE10 (or IE 10 render mode) where the elements are created but hidden with opacity 0, some how its not changing them on scroll
image

bug unconfirmed

Most helpful comment

FYI I just went with the option of not having the animation work on IE for now:

function msieversion() {
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");

if (msie > 0)
{
    $("[data-aos^=fade][data-aos^=fade]").css("opacity", "1");
}

}

$(document).ready(function (){
msieversion()
});

All 17 comments

It happens with all elements on IE10? Or a specific one?

No confirmation since September and no other issues like this. I presume it's working fine, there was some work regarding IE's in the meanwhile.

I have the same issue, class aos-animate not added in ie10,
I cant to understand why this code: el.node.classList.add('aos-animate'); not working =(((

I'm having the same issue. Exactly what the original message was.
@michalsnik

me too

me too

me too

FYI I just went with the option of not having the animation work on IE for now:

function msieversion() {
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE ");

if (msie > 0)
{
    $("[data-aos^=fade][data-aos^=fade]").css("opacity", "1");
}

}

$(document).ready(function (){
msieversion()
});

me too :(

Same here. Doesn't work in IE 10. All elements on the page remain hidden, even on scroll.

Having the same issue on E10.

Me too... Has anyone found a solution to this?

Edit message:
I apologize, Console signaled AOS, but problem was caused by another script.

Any luck with this issue IE 10 issue? I'm using the basic installation, and the first element on the page will animate just fine, but the others remain hidden on scroll. Note: IE 11 and Edge work fine.

I have the same issue. The first element animates in. None of the other elements will animate.

Same issue.

Same

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Crazy-Ivancz picture Crazy-Ivancz  路  5Comments

jodriscoll picture jodriscoll  路  4Comments

Dsmol1 picture Dsmol1  路  3Comments

timotheegoguely picture timotheegoguely  路  3Comments

skube picture skube  路  4Comments