Can ie add css3@keyframs through addRule?

the animation added to ie through addRule indicates that the parameter is invalid. I would like to ask you how to add

to js.
Jul.08,2021

ie supports css animation, only in version 11. See the link to this site
https://caniuse.com/-sharpfeat=css.

.

if @ keyframes doesn't work, try adding the -ms- prefix
that is

@-ms-keyframes move {
  0% {left: 0px;}
  50% {left: 940px; opacity: 0;}
  100% {left: 0px;}
}
Menu