La función child() se usa para agregar el elemento como elemento secundario al elemento principal. Esta función acepta un ID de string, un Node DOM o p5.Element. Si esta función no contiene ningún parámetro, devuelve una array de Nodes DOM secundarios.
Nota: Esta función utiliza la biblioteca p5.dom. Así que agregue la siguiente línea en la sección principal del archivo index.html.
<script language="javascript" type="text/javascript" src="path/to/p5.dom.js"> </script>
Sintaxis:
child()
o
child( child )
Parámetros: esta función acepta un solo parámetro secundario que contiene la string o p5.Element. El ID, el Node DOM o p5.Element se usa para agregar como un elemento actual.
Valor devuelto: Devuelve una array de Nodes secundarios.
El siguiente ejemplo ilustra la función child() en p5.js:
Ejemplo:
function setup() { // Create Canvas of given size var cvs = createCanvas(600, 250); } function draw() { // Set the background color background('green'); // Use createDiv() function to // create a div element var myDiv = createDiv('GeeksforGeeks'); var myDiv1 = createDiv('A computer science portal for geeks'); // Use child() function myDiv.child(myDiv1); // Set the position of div element myDiv.position(150, 100); myDiv.style('text-align', 'center'); // Set the font-size of text myDiv.style('font-size', '24px'); // Set the font color myDiv.style('color', 'white'); }
Producción: