当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


p5.js getURL()用法及代码示例


p5.j​​s中的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



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | getURL() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。