如何在使用 FabricJS 時設定文字中單個字元的樣式?


在本教程中,我們將學習如何在使用 FabricJS 時設定文字中單個字元的樣式。我們可以透過新增 fabric.Text 例項來在畫布上顯示文字。它不僅允許我們移動、縮放和更改文字的尺寸,還提供額外的功能,例如文字對齊、文字修飾、行高,這些可以透過 textAlign、underline 和 lineHeight 屬性分別獲得。同樣,我們也可以使用 styles 屬性設定單個字元的樣式。

語法

new fabric.Text(text: String , { styles: Object }: Object)

引數

  • text − 此引數接受一個字串,即我們要顯示的文字字串。

  • options (可選) − 此引數是一個物件,它為我們的文字提供額外的自定義選項。使用此引數可以更改與物件相關的許多屬性,例如顏色、游標、邊框寬度等等,其中 styles 是一個屬性。

選項鍵

  • styles − 此屬性接受一個物件值,允許我們為單個字元新增樣式。

示例 1

文字物件的預設外觀

讓我們來看一個程式碼示例,看看在不使用 styles 屬性時我們的文字物件是什麼樣子。在這種情況下,我們的文字樣式看起來沒有對單個字元的樣式進行更改。

<!DOCTYPE html> <html> <head> <!-- Adding the Fabric JS Library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>Default appearance of the Text object</h2> <p>You can see that no styles have been added to individual characters</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a text object var text = new fabric.Text("Add sample
text here."
, { width: 300, left: 60, top: 70, fill: "green", }); // Add it to the canvas canvas.add(text); </script> </body> </html>

示例 2

將 styles 屬性作為鍵傳遞

在這個示例中,我們將看到如何使用 styles 屬性為字元新增單個樣式。正如我們在這個示例中看到的,只有第 0 個字元的 fontSize 為 55,fontWeight 為粗體,fontStyle 為“斜體”。第一級屬性是行號,第二級屬性是字元號。這裡我們對兩者都使用 0,表示第一行和第一個字元。

<!DOCTYPE html> <html> <head> <!-- Adding the Fabric JS Library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>Passing the styles property as key</h2> <p>You can see that the first character looks different now</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); // Initiate a text object var text = new fabric.Text("Add sample
text here."
, { width: 300, left: 110, top: 70, fill: "green", styles: { 0: { 0: { fontSize: 55, fontWeight: "bold", fontStyle: "oblique", } } } }); // Add it to the canvas canvas.add(text); </script> </body> </html>

更新於:2022年9月14日

619 次檢視

啟動您的職業生涯

完成課程獲得認證

開始學習
廣告
© . All rights reserved.