animate 函数在 Chrome 中不起作用,但在 IE 中起作用
在这种情况下,animate 函数在 Chrome 中不起作用,但它在 Internet Explorer 中完美运行。该问题源于全局 animate 函数与 Web 动画中引入的 Element.prototype.animate 函数之间的阴影冲突。
要解决此问题,请考虑以下步骤:
function animateElement() { var div = document.getElementById('demo'); div.style.left = "200px"; div.style.color = "red"; }
document.getElementById('demo').addEventListener('click', animateElement);
以上是为什么我的'animate”功能在 Chrome 中不起作用,但在 Internet Explorer 中起作用?的详细内容。更多信息请关注PHP中文网其他相关文章!