xxxxxxxxxx
27
let data;
function preload() {
data = loadJSON("richPeople.json");
}
function setup() {
noCanvas();
let richPeopleArray = data.richPeople
for (let i = 0; i < richPeopleArray.length; i++) {
let name = createElement("h2", richPeopleArray[i].name);
name.style("background-color","orange");
name.style("color","white");
name.style("margin-left","20px");
name.style("padding","10px");
let p = createP("");
p.parent(name);
let image = createImg(richPeopleArray[i].img);
image.parent(name);
}
}
function draw() {
background(220);
}