keyframes/animations not working in IE11
See original GitHub issueI have a simple CSS animation in a component using the keyframes
helper. The animations work in all browsers except IE11, where they simply do not run. IE gives no error.
Environment
## System:
- OS: macOS 10.14.5
- CPU: (8) x64 Intel(R) Core(TM) i7-4980HQ CPU @ 2.80GHz
- Memory: 141.27 MB / 16.00 GB
- Shell: 5.6.2 - /usr/local/bin/zsh
## Binaries:
- Node: 8.11.4 - ~/.nvm/versions/node/v8.11.4/bin/node
- Yarn: 1.15.2 - ~/.nvm/versions/node/v8.11.4/bin/yarn
- npm: 6.5.0 - ~/.nvm/versions/node/v8.11.4/bin/npm
## npmPackages:
- styled-components: ^4.2.0 => 4.2.1
Reproduction
Relevant code is in this file: https://github.com/joeattardi/react-snackbar-alert/blob/master/src/Snackbar.js
Steps to reproduce
- Add some keyframes using the
keyframes
helper - Use those keyframes in an animation in a styled component further down in the file
- View page in IE11
Expected Behavior
Animations run
Actual Behavior
Animations do not run
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
CSS3 animation is not working in IE11 but works in other ...
IE11 always has a problem when setting animation-play-state as running in the shorthand. There is no justification for this and it should ...
Read more >Fixing CSS3 animations in IE10 and IE11
Problem: CSS3 animations not firing in IE10 or IE11. Solution: If you're using keyframes, be sure to place them directly at the top...
Read more >CSS Animations not working in IE (10-11, and all others)
Basically, the final image gets stuck halfway on the page in IE11, and no animations show. Even if we could just get that...
Read more >CSS animation not working in IE11 and Edge
I have tried putting my keyframes at the top of my CSS, not in the media query, http-equiv set to IE=Edge, etc. It's...
Read more >Cross Browser Compatibility of CSS Animation in Internet ...
CSS Animation is Fully Supported on Internet Explorer 11. ... LT Debug - The best chrome extension to debug web issues and accelerate...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Remade it in another client that supports IE11 and the animation seems fine: https://stackblitz.com/edit/react-q8xss1
Might just be your setup.
Please provide a codesandbox 😃
On Mon, Jun 3, 2019 at 3:10 PM Joe Attardi notifications@github.com wrote: