gpt4 book ai didi

javascript - 如何更改 Canvas 元素的位置?

转载 作者:数据小太阳 更新时间:2023-10-29 05:53:03 25 4
gpt4 key购买 nike

我可以在不使用 CSS 的情况下在 Javascript 中更改 Canvas 元素的 x 和 y 位置吗?我似乎找不到任何人甚至在 Internet 上询问它。

编辑:可以用 HTML 完成吗?

<html>
<title>Testing</title>
<canvas id="main" width="200" height="200" style="border:1px solid #c3c3c3;">
Error: Browser does not support canvas element.
</canvas>
<script type="text/javascript">
var main = document.getElementById("main");
var render = main.getContext("2d");
main.width = 200;
main.height = 200;
main.style.left = 100x;
main.style.top = 100px;
</script>
</html>

最佳答案

<html>
<title>Testing</title>
<canvas id="main" width="200" height="200" style="border:1px solid #c3c3c3;">
Error: Browser does not support canvas element.
</canvas>
<script type="text/javascript">

var main = document.getElementById("main");
var render = main.getContext("2d");
main.width = 200;
main.height = 200;
main.style.left = "100px";
main.style.top = "100px";
main.style.position = "absolute";
</script>
</html>

关于javascript - 如何更改 Canvas 元素的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9220440/

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