0
Is there a way to use Processing.js in HTML?
2 ответов
0
Yeah, simply include the processing.js library then write your processing code in script tag like below and run. Search for processing in codeplayground by most popular in web codes for examples
<script src="https://cdnjs.cloudflare.com/ajax/libs/processing.js/1.6.6/processing.js"></script>
<script type="text/processing" data-processing-target="processing-canvas"> your code here</script>
https://code.sololearn.com/Wov6ZT1v15cd/?ref=app
0
Thanks!