How To Fix Ken Burns Effect In IE11 - kary4/divituts GitHub Wiki
A lot of users apply Ken Burns Effect as explained here: https://www.elegantthemes.com/blog/divi-resources/ken-burns-effect-divi
However, it does not work well in IE browsers. To fix it you can apply rotate(0.02deg) to the css code.
For example replace this line:
transform: scale3d(1.5, 1.5, 1.5) translate3d(0px, 0px, 0px);
with:
transform: scale3d(1.5, 1.5, 1.5) rotate(0.02deg) translate3d(0px, 0px, 0px);
Initial report: https://www.elegantthemes.com/forum/viewtopic.php?f=21&t=830866