1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| let checkbox;
function setup() {
createCanvas(windowWidth, windowHeight); checkbox = createCheckbox("checkbox",true); checkbox.position(10,10); checkbox.style("padding-left","20px"); checkbox.style("padding-right","20px"); checkbox.style("padding-top","10px"); checkbox.style("padding-bottom","10px"); checkbox.style("font-size","30px");
checkbox.changed(myCheckedEvent);
}
function myCheckedEvent() { if (this.checked()) { console.log('Checking!'); } else { console.log('Unchecking!'); } }
|