xxxxxxxxxx
18
function setup() {
noCanvas();
// for (var i = 0; i < 5; i++) {
var p = createP('This is a link: ');
p.style('background-color', '#CCC');
p.style('padding', '24px');
var a = createA('#', 'apples');
a.mousePressed(addPhoto);
// }
}
function addPhoto() {
var img = createImg('apples2.jpg', 'apples');
img.size(100, 100);
}