在本教程中,我們將學習如何使用 FabricJS 來移動文字中單一字元的基線。我們可以透過新增 Fabric.Text 的實例在畫布上顯示文字。它不僅允許我們移動、縮放和更改文字的尺寸,而且還提供了附加功能,例如文字對齊、文字裝飾、行高,這些功能可以分別透過屬性 textAlign、underline 和 lineHeight 獲得。同樣,我們也可以使用 deltaY 屬性來移動單一字元的基線。
new fabric.Text(text: String , { styles: { deltaY: Number}:Object }: Object)
text - 此參數接受一個 String,這是我們要顯示的文字字串。
選項(可選) - 此參數是一個物件,它為我們的文字提供額外的自訂。使用此參數可以變更與樣式為屬性的物件相關的顏色、遊標、邊框寬度和許多其他屬性。
styles - 這個屬性接受一個Object值,它允許我們為單一字元新增樣式。
deltaY - 此屬性接受一個 Number 值,該值允許我們只移動樣式的基準。
只傳遞 styles 屬性作為鍵
在此範例中,我們可以看到如何使用 styles 屬性為字元新增單獨的樣式。正如我們在這個例子中看到的,只有第 0 個字元的 fontSize 為 55,fontWeight 為粗體,fontStyle 為「oblique」。第一層屬性是行號,第二級屬性是字符號。這裡我們使用 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: 50, top: 70, fill: "green", styles: { 0: { 0: { fontSize: 55, fontWeight: "bold", fontStyle: "oblique", } } } }); // Add it to the canvas canvas.add(text); </script> </body> </html>
將 styles 屬性作為鍵與 deltaY 屬性一起傳遞
在此範例中,我們將了解如何使用 deltaY 屬性為字元新增不同的基準。在這種情況下,由於指定了 deltaY,第一行中的第二個數字(第一個索引)與其相鄰字元具有不同的基線。
<!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 along with deltaY property</h2> <p> You can see that the second number in the first line has a different baseline </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. H2O", { width: 300, left: 50, top: 70, fill: "green", styles: { 1: { 0: { fontSize: 55, fontWeight: "bold", fill: "red", }, 1: { deltaY: 15, fill: "blue", }, 2: { fontSize: 55, fontWeight: "bold", fill: "red", }, }, }, }); // Add it to the canvas canvas.add(text); </script> </body> </html>
以上是如何使用 FabricJS 移動文字中單一字元的基線?的詳細內容。更多資訊請關注PHP中文網其他相關文章!