有没有办法只更改画布上下文的字体大小而无需知道/编写字体系列。
var ctx = document.getElementById("canvas").getContext("2d");
ctx.font = '20px Arial'; //Need to speficy both size and family...
笔记:
ctx.fontSize = '12px'; //doesn't exist so won't work...
ctx.style.fontSize = '20 px' //doesn't exist so won't work...
//we are changing the ctx, not the canvas itself
其他注意事项:我可以这样做:检测“px”在哪里,删除“px”之前的内容并用我的字体大小替换它。但如果可能的话,我想要比这更容易的东西。