UNPKG

processing-js

Version:

For the project website, visit http://processingjs.org

38 lines (34 loc) • 759 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Processing.js</title> <script src="processing.js"></script> </head> <body> <h1>Processing.js</h1> <script type="text/processing"> void setup() { size(400,200); textAlign(CENTER, CENTER); background(0,0,100); fill(255,230,75); text("Processing.js", width/2, height/2); noLoop(); } void draw() { } void mouseMoved() { stroke(255); point(mouseX, mouseY); redraw(); } void mousePressed() { line(0,mouseY,width,mouseY); line(mouseX,0,mouseX,height); println(mouseX, mouseY); } </script> <canvas></canvas> </body> </html>