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


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


p5.j​​s中的textStyle()函数用于将系统字体的文本样式设置或返回为NORMAL,ITALIC,BOLD或BOLDITALIC。 CSS样式可能会将其覆盖。

用法:

textStyle(style)

或者


textStyle()

参数:此函数接受存储样式常量的单个参数样式。

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

范例1:本示例使用textStyle()函数设置文本样式。

function setup() { 
      
    // Create Canvas of given size 
    createCanvas(380, 170); 
} 
  
function draw() { 
      
    let string = "GeeksforGeeks"; 
      
    // Set the background color 
    background(220); 
      
    // Set the text style 
    textStyle(ITALIC); 
      
    // Set the text size 
    textSize(16); 
      
    // Set the text  
    text(string, 20, 30); 
  
    // Set text styling 
    textStyle(BOLD); 
      
    text(string, 20, 70); 
  
    // Set text styling 
    textStyle(BOLDITALIC); 
      
    text(string, 20, 110); 
}

输出:

范例2:本示例使用textStyle()函数返回文本样式。

function setup() { 
      
    // Create Canvas of given size 
    createCanvas(380, 170); 
} 
  
function draw() { 
      
    let string = "GeeksforGeeks"; 
      
    // Set the background color 
    background(220); 
      
    // Set text style 
    textStyle(BOLD); 
      
    // Set the text size 
    textSize(16); 
  
    // Get the value of text style 
    var u = textStyle(); 
      
    // Set the stroke color 
    stroke(255, 204, 0); 
      
    // Display the result 
    text("Value of Text Style is : " + u, 50, 30); 
}

输出:

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



相关用法


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