xxxxxxxxxx
24
function setup() {
createCanvas(800, 400);
inputField();
}
function draw() {
background(220);
}
function inputField() {
let tbox = createInput();
tbox.size(width-8,72);
tbox.style('font-size', '48px');
tbox.style('font-family', 'monospace');
tbox.style('text-align', 'center');
tbox.style('font-weight', 'bold');
tbox.maxLength = '10';
tbox.style('cursor', 'crosshair');
tbox.attribute('maxlength', 24);
}