gpt4 book ai didi

javascript - javascript 中的 SVG 翻译转换在 IE 11 中不起作用

转载 作者:行者123 更新时间:2023-12-02 14:39:47 25 4
gpt4 key购买 nike

以下代码在 IE 11 中不起作用(Chrome 可以正常工作)

<html>
<head>
<script>
window.onload = function() {document.getElementById("abc").style.transform = "translate(100px,100px)";};
</script>
</head>
<body>
<div>
<svg width="200" height="200">
<g id="abc">
<polygon points="14,7 0,14 0,0"></polygon>
</g>
</svg>
</div>
</body>

最佳答案

对于 IE,您需要将 Transform 设置为属性而不是 CSS 样式。

请注意,对于属性,不允许使用单位。

<html>
<head>
<script>
window.onload = function() {document.getElementById("abc").setAttribute("transform", "translate(100, 100)")};
</script>
</head>
<body>
<div>
<svg width="200" height="200">
<g id="abc">
<polygon points="14,7 0,14 0,0"></polygon>
</g>
</svg>
</div>
</body>

关于javascript - javascript 中的 SVG 翻译转换在 IE 11 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37109349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com