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


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


size()函数是一个内置函数,用于设置元素的宽度和高度。自动用于一次设置一个尺寸。如果未提供size()函数的参数,则它将返回对象中元素的宽度和高度。

此函数需要p5.dom库。因此,在index.html文件的开头部分添加以下行。

<script language="javascript"
    type="text/javascript" src="path/to/p5.dom.js"> 
</script>

用法:


size()

或者

size( w, h )

参数:该函数接受上述和以下描述的两个参数:

  • w:此参数保存元素的宽度(AUTO或数字)。
  • h:此参数保存元素的高度,可以是AUTO或数字。

返回值:此函数返回对象中元素的宽度和高度。

下面的示例说明了p5.js中的size()函数:

例:

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(180, 80);   
    
  // Set the div size 
  myDiv.size(200, 100); 
    
  // Set the font-size of text 
  myDiv.style('font-size', '24px'); 
    
  // Set the font-size of text 
  myDiv.style('border', '1px solid black'); 
    
  // Set the font-size of text 
  myDiv.style('text-align', 'center'); 
    
  // Set the font color 
  myDiv.style('color', 'white'); 
    
}

输出:



相关用法


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