gpt4 book ai didi

javascript - 使用javascript切换svg路径中的 "d"值?

转载 作者:行者123 更新时间:2023-11-28 02:01:11 26 4
gpt4 key购买 nike

我正在尝试切换“d”值并将其替换为动态生成的数字,但我不断收到“意外数字”作为我的输出。这是我目前拥有的:

<path id="pathA" d="M 0 0 l 0 255" stroke="none" stroke-width="0" fill="none"/>

<script>
var sink = document.getElementById("pathA");
sink.setAttribute("d", M 0 0 l 0 (round*25.5));
</script>

最佳答案

您提供的脚本有两个问题。

首先,您传递给 setAttribute 的第二个参数不正确。尝试:

sink.setAttribute("d", "M 0 0 1 0 " + (round * 25.5));

其次,您在任何时候都没有为 round 提供值。

关于javascript - 使用javascript切换svg路径中的 "d"值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18423940/

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