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
相关用法
- p5.js min()用法及代码示例
- PHP end()用法及代码示例
- PHP cos( )用法及代码示例
- p5.js hue()用法及代码示例
- PHP sin( )用法及代码示例
- d3.js d3.sum()用法及代码示例
- d3.js d3.set.has()用法及代码示例
- PHP abs()用法及代码示例
- PHP Ds\Map xor()用法及代码示例
- CSS hsl()用法及代码示例
- p5.js sin()用法及代码示例
- p5.js tan()用法及代码示例
注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 p5.js | textStyle() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。