可以在Javascript中翻译处理中的自动调用功能draw()吗?如何在JS中模拟这种行为?
答案 0 :(得分:0)
没有单独的Java脚本,但是如果您下载jQuery(https://jquery.com/),则可以执行与处理中的draw函数非常相似的操作。
通过使用与此类似的一段代码,您应该可以获得不错的结果:
setInterval(function() {
draw();
}, 1); //So it waits one millisecond untill calling the draw function
function draw() {
//Your code goes in here
}
我希望这对您有用!