La función remove() es una función incorporada que se utiliza para eliminar el elemento y cancelar el registro de todos los oyentes.
Esta función requiere 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:
remove()
Parámetros: Esta función no acepta ningún parámetro.
Los siguientes ejemplos ilustran la función remove() en p5.js:
Ejemplo 1: Este ejemplo crea un elemento.
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('Welcome to GeeksforGeeks'); // Set the position of div element myDiv.position(150, 100); // Set the font-size of text myDiv.style('font-size', '24px'); // Set the font color myDiv.style('color', 'white'); // Comment the remove() function // myDiv.remove(); }
Producción:
Ejemplo 2: Este ejemplo usa la función remove() para eliminar el elemento.
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('Welcome to GeeksforGeeks'); // Set the position of div element myDiv.position(150, 100); // Set the font-size of text myDiv.style('font-size', '24px'); // Set the font color myDiv.style('color', 'white'); // Use remove() function to remove div element myDiv.remove(); }
Producción: