Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

画布 字体 属性

❮ 画布参考

示例

在画布上用“Arial”字体编写 30px 高的文本

您的浏览器不支持 HTML5 画布标签。

JavaScript

const canvas = document.getElementById("myCanvas");
const ctx = canvas.getContext("2d");

ctx.font = "30px Arial";
ctx.fillText("Hello World", 10, 50);
亲自试一试 »

描述

font 属性设置或返回画布文本的字体属性。

font 属性使用与 CSS front 属性 相同的语法。

默认值为 10px sans-serif。

另请参阅

fillStyle 属性 (设置文本颜色/渐变)

textAlign 属性 (设置文本对齐)

textBaseline 属性 (设置文本基线)

fillText() 方法 (绘制文本)

strokeText() 方法 (绘制文本)


语法

context.font = "italic small-caps bold 12px arial"

属性值

描述 试玩一下
font-style
  • normal
  • italic
  • oblique
试玩一下 »
font-variant
  • normal
  • small-caps
试玩一下 »
font-weight
  • normal
  • bold
  • bolder
  • lighter
  • 100
  • 200
  • 300
  • 400
  • 500
  • 600
  • 700
  • 800
  • 900
试玩一下 »
font-size 以像素为单位的字体大小 试玩一下 »
font-family 字体系列 试玩一下 »
caption 使用按钮中使用的字体 试玩一下 »
icon 使用用于标记图标的字体 试玩一下 »
menu 使用菜单中使用的字体 试玩一下 »
message-box 使用对话框中使用的字体 试玩一下 »
small-caption 使用用于标记小型控件的字体 试玩一下 »
status-bar 使用窗口状态栏中使用的字体 试玩一下 »

浏览器支持

<canvas> 元素是 HTML5 标准 (2014)。

font 在所有现代浏览器中受支持

Chrome Edge Firefox Safari Opera IE
9-11

❮ 画布参考
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.