La función getURL() en p5.js se usa para devolver la URL actual.
Sintaxis:
getURL()
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: Devuelve la string URL actual.
El siguiente programa ilustra la función getURL() en p5.js:
Ejemplo:
// Declare a URL variable let url; // Function to set the height and // width of window function setup() { createCanvas(350, 200); // Use getURL() function to // get the current URL url = getURL(); } function draw() { // Set the background color background(0, 200, 0); // Set the font-size textSize(30); // Set the text alignment textAlign(LEFT); text(url, 100, height / 2); }
Producción:
Referencia: https://p5js.org/reference/#/p5/getURL
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA