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


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


style()函数用于使用给定值设置元素的样式属性。如果此函数包含单个参数,则使用.style()函数返回给定属性的值。

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

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



用法:

style( property )

或者

style( property, value )

参数:

  • property:此参数保存CSS属性名称。
  • value:此参数保存CSS属性的值。

返回值:此函数返回属性的值。

范例1:

function setup() { 
      
    // Create canvas of size 400*200  
    createCanvas(400, 200); 
      
    // Set background color 
    background('green'); 
      
    // Create an input element 
    var input_val = createInput('');     
      
    // Set the attribute and its value     
    input_val.attribute('value', 'Welcome to GeeksforGeeks');   
    
    // Set the position of div element 
    input_val.position(60, 80);  
    
    // Set width of input field 
    input_val.style('width', '250px'); 
    
    // Set font-size of input text 
    input_val.style('font-size', '20px'); 
  
} 

输出:

范例2:

function setup() { 
      
    // Create canvas of size 400*200  
    createCanvas(400, 200); 
      
    // Set background color 
    background('green'); 
      
    // Create an input element 
    var div_cont = createDiv('Welcome to GeeksforGeeks'); 
      
    // Set the position of div element 
    div_cont.position(60, 80);  
    
    // Set the font color 
    div_cont.style('color', '#ffffff');   
    
    // Set width of input field 
    div_cont.style('width', '250px'); 
    
    // Set font-size of input text 
    div_cont.style('font-size', '20px'); 
  
} 

输出:



相关用法


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