📜  p5.js | getURL()函数

📅  最后修改于: 2022-05-13 01:56:19.062000             🧑  作者: Mango

p5.js | getURL()函数

p5.js 中的 getURL()函数用于返回当前 URL。

句法:

getURL()

参数:此函数不接受任何参数。

返回值:返回当前的 URL字符串。

下面的程序说明了 p5.js 中的 getURL()函数:

例子:

// 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);
}

输出:

参考: https://p5js.org/reference/#/p5/getURL