溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

HTML5 canvas怎么實現(xiàn)文字渲染效果

發(fā)布時間:2021-08-12 10:26:29 來源:億速云 閱讀:159 作者:chen 欄目:web開發(fā)

這篇文章主要介紹“HTML5 canvas怎么實現(xiàn)文字渲染效果”,在日常操作中,相信很多人在HTML5 canvas怎么實現(xiàn)文字渲染效果問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”HTML5 canvas怎么實現(xiàn)文字渲染效果”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

與文本渲染有關(guān)的主要有三個屬性以及三個方法:

HTML5 canvas怎么實現(xiàn)文字渲染效果

上述的屬性和方法的基本用法如下:

JavaScript Code復(fù)制內(nèi)容到剪貼板

  1. var canvas = document.getElementById("canvas");   

  2.     var context = canvas.getContext("2d");   

  3.   

  4.     context.font="bold 30px Arial"//設(shè)置樣式   

  5.     context.strokeStyle = "#1712F4";   

  6.     context.strokeText("歡迎來到我的博客!",30,100);   

  7.   

  8.     context.font="bold 50px Arial";    

  9.     var grd = context.createLinearGradient( 30 , 200, 400 , 300 );//設(shè)置漸變填充樣式   

  10.     grd.addColorStop(0,"#1EF9F7");   

  11.     grd.addColorStop(0.25,"#FC0F31");   

  12.     grd.addColorStop(0.5,"#ECF811");   

  13.     grd.addColorStop(0.75,"#2F0AF1");   

  14.     grd.addColorStop(1,"#160303");   

  15.     context.fillStyle = grd;   

  16.     context.fillText("歡迎來到我的博客!",30,200);   

  17.   

  18.     context.save();   

  19.     context.moveTo(200,280);   

  20.     context.lineTo(200,420);   

  21.     context.stroke();   

  22.     context.font="bold 20px Arial";    

  23.     context.fillStyle = "#F80707";   

  24.     context.textAlign="left";   

  25.     context.fillText("文本在指定的位置開始",200,300);   

  26.     context.textAlign="center";   

  27.     context.fillText("文本的中心被放置在指定的位置",200,350);   

  28.     context.textAlign="right";   

  29.     context.fillText("文本在指定的位置結(jié)束",200,400);   

  30.     context.restore();   

  31.   

  32.     context.save();   

  33.     context.moveTo(10,500);   

  34.     context.lineTo(500,500);   

  35.     context.stroke();   

  36.     context.fillStyle="#F60D0D";   

  37.     context.font="bold 20px Arial";    

  38.     context.textBaseline="top";   

  39.     context.fillText("指定位置在上面",10,500);   

  40.     context.textBaseline="bottom";   

  41.     context.fillText("指定位置在下面",150,500);   

  42.     context.textBaseline="middle";   

  43.     context.fillText("指定位置居中",300,500);   

  44.     context.restore();   

  45.   

  46.   

  47.     context.font="bold 40px Arial";    

  48.     context.strokeStyle = "#16F643";   

  49.     var text = "歡迎來到我的博客!";   

  50.     context.strokeText("歡迎來到我的博客!",10,600);   

  51.     context.strokeText("上面字符串的寬度為:"+context.measureText(text).width,10,650);   

  52.   

效果如下:

HTML5 canvas怎么實現(xiàn)文字渲染效果

到此,關(guān)于“HTML5 canvas怎么實現(xiàn)文字渲染效果”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI