HTML5 <animate> 标签在 IE11 中不工作

HTML5 <animate> Tag not working in IE11

在学习了一些 HTML 基础知识后,我尝试制作这个动画,它在我的 Firefox 浏览器中运行。
现在我想知道为什么它在我的 IE 11 上不起作用。
它显示了所有内容,但不播放动画。
这是 HTML-文本:

<!doctype html>
<html>
<head>
<title>HTML5 Circle Test</title>
<style>
svg{
 vertical-align:top;
 border:5px solid black;
 border-radius: 10px;
}
circle{
 cursor: pointer;
}
</style>
</head>
<body>
<svg width="1000" height="1000">
<circle cx="0" cy="0" r="50" fill="yellow" stroke="black">
<animate attributeName="cx" from="-50" to="1100" dur="5s" fill="freeze" repeatCount="indefinite"/>
<animate attributeName="cy" from="100" to="700" dur="5s" fill="freeze" repeatCount="indefinite"/>
<animate attributeName="r" from="50" to="100" dur="5s" fill="freeze" repeatCount="indefinite"/>
<circle/>
</body>
</html>

另一件事:我在没有管理员权限的情况下尝试了它,并且无法访问 IE 的许多属性,难道是 IE 阻止了我必须先更改的某些内容?
由于我是 HTML 的新手,如果有人能给我对这些问题的有用提示,我也将不胜感激,因为例如,我在 HTML 元素的 w3schools 中找不到动画标签参考。

因为 IE 不支持该标签。参见 link: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate#Browser_compatibility