Facebook share button breaking CSS animations in IE11 -


this issue started occurring in past couple of weeks, may related ie11 update or change fb's widget.

i have fb share button on site.

<script>     (function (d, s, id) {         var js, fjs = d.getelementsbytagname(s)[0];         if (d.getelementbyid(id)) return;         js = d.createelement(s);         js.id = id;         js.src = "//connect.facebook.net/en_us/all.js#xfbml=1";         fjs.parentnode.insertbefore(js, fjs);     }(document, 'script', 'facebook-jssdk')); </script> 

is in document head, <div id="fb-root"></div> , <div class="fb-share-button" data-href="http://myurl.com" data-width="60" data-type="button"></div> in body.

it works fine in chrome, firefox, safari , ie10 (as ie11 w/ ie10 emulation turned on). in ie11 css animations stop working. animations set default in stylesheet work, animations fired via :hover inline css added jquery won't play.

i can confirm other :hover effects still work, , setting inline (non-animation) styles via jquery work. it's animations reason. i've tried animating various different properties, none of them work.

if remove facebook script document head, animations start working again.

has else encountered or know why might happening?

note: on ie v11.0.9600.16428, win7 x64

i posted similar question , found solution. wonder if same work you. see answer @ loading facebook sdk in ie11 breaks css animations


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -