gpt4 book ai didi

javascript - Javascript 处理的 draw() 函数

转载 作者:行者123 更新时间:2023-12-05 07:56:35 27 4
gpt4 key购买 nike

是否可以在 Javascript 中翻译 Processing 中的自动调用函数 draw()?如何在 JS 中模拟这种行为?

最佳答案

Javascript 本身没有办法,但如果你下载 jQuery ( https://jquery.com/ ),你就可以做一些与处理中的绘制函数非常相似的事情。

通过使用一段与此类似的代码,您应该能够获得相当不错的结果:

setInterval(function() { 
draw();
}, 1); //So it waits one millisecond untill calling the draw function

function draw() {
//Your code goes in here
}

我希望这对你有用!

关于javascript - Javascript 处理的 draw() 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28517609/

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