📜  p5.js | textStyle()函数

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

p5.js | textStyle()函数

p5.js 中的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