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中文網其他相關文章!