strokeText() 是 Canvas 2D API 在給定的 (x, y) 位置繪制文本的方法。如果提供了表示最大值的第四個參數,文本將會縮放適應寬度。
使用 strokeText(),在畫布上寫文本 "菜鳥教程!" 和 "www.soo66.com!"(帶漸變):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>HTML canvas strokeText() 方法使用-菜鳥教程(cainiaoplus.com)</title> </head> <body> <canvas id="myCanvas" width="300" height="150" style="border:1px solid #d3d3d3;"> 您的瀏覽器不支持 HTML5 canvas 標簽。 </canvas> <script> var c=document.getElementById("myCanvas"); var ctx=c.getContext("2d"); ctx.font="20px Georgia"; ctx.strokeText("菜鳥教程!",10,50); ctx.font="30px Verdana"; // 創(chuàng)建一個漸變 var gradient=ctx.createLinearGradient(0,0,c.width,0); gradient.addColorStop("0","magenta"); gradient.addColorStop("0.5","blue"); gradient.addColorStop("1.0","red"); // 填充一個漸變 ctx.strokeStyle=gradient; ctx.strokeText("www.soo66.com!",10,90); </script> </body> </html>測試看看 ?/?
IEFirefoxOperaChromeSafari
Internet Explorer 9、Firefox、Opera、Chrome 和 Safari 支持 strokeText() 方法。
注意:Internet Explorer 8 及之前的版本不支持 <canvas> 元素。
注意:Safari 不支持 maxWidth 參數。
strokeText() 方法在畫布上繪制文本(不填充)。文本的默認顏色是黑色。
提示:請使用 font 屬性來定義字體和字號,并使用 strokeStyle 屬性以另一種顏色/漸變來渲染文本。
JavaScript 語法: | context.strokeText(text,x,y,maxWidth); |
---|
參數 | 描述 |
---|---|
text | 規(guī)定在畫布上輸出的文本。 |
x | 開始繪制文本的 x 坐標位置(相對于畫布)。 |
y | 開始繪制文本的 y 坐標位置(相對于畫布)。 |
maxWidth | 可選。允許的最大文本寬度,以像素計。 |