我正在尝试在同一页面上运行多个草图.
init脚本指定:
/*
* This code searches for all the <script type="application/processing" target="canvasid">
* in your page and loads each script in the target canvas with the proper id.
* It is useful to smooth the process of adding Processing code in your page and starting
* the Processing.js engine.
*/
Run Code Online (Sandbox Code Playgroud)
当我指定每个草图的目标画布时,它不起作用:
<script type="application/processing" target="canvas1">..</script>
<script type="application/processing" target="canvas2">..</script>
<canvas id="canvas1".. />
<canvas id="canvas2".. />
Run Code Online (Sandbox Code Playgroud)
但它不起作用?这有可能吗?任何帮助将非常感激.我试图让一个内联画布元素的文档运行一个草图,彼此同步.
通过为脚本和画布标签设置ID来实现它:
<script type="application/processing" id="script1">..</script>
<script type="application/processing" id="script2">..</script>
<canvas id="canvas1" width="200px" height="200px"></canvas>
<canvas id="canvas2" width="200px" height="200px"></canvas>
<script>
canvas1 = document.getElementById("canvas1");
script1 = document.getElementById("script1").text;
canvas2 = document.getElementById("canvas2");
script2 = document.getElementById("script2").text;
Processing(canvas1, script1);
Processing(canvas2, script2);
</script>
Run Code Online (Sandbox Code Playgroud)