Ich versuche, mehrere Skizzen auf derselben Seite auszuführen.
Das Init-Skript legt dies fest:
/*
* 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.
*/
Wenn ich die Zielleinwand für jede Skizze festlege, funktioniert es nicht:
<script type="application/processing" target="canvas1">..</script>
<script type="application/processing" target="canvas2">..</script>
<canvas id="canvas1".. />
<canvas id="canvas2".. />
aber es funktioniert nicht? Ist das überhaupt möglich? Für jede Hilfe wären wir Ihnen sehr dankbar. Ich versuche, ein Dokument mit Inline-Canvas-Elementen zu haben, die eine Skizze synchron zueinander ausführen.