在本教學中,我們將學習如何使用 FabricJS 將 Line 物件在畫布的目前視窗上垂直居中。 Line 元素是 FabricJS 中提供的基本元素之一。它用於創建直線。由於線元素在幾何上是一維的並且不包含內部,因此它們永遠不會被填充。我們可以透過建立 fabric.Line 實例來建立線條對象,指定線條的 x 和 y 座標並將其新增至畫布。為了讓 Line 物件在畫布的目前視窗上垂直居中,我們使用 viewportCenterV 方法。
viewportCenterV(): fabric.Object
讓我們看一個程式碼範例,看看不使用viewportCenterV#方法時我們的Line 物件的外觀。在這種情況下,線條物件將不會在畫布上垂直居中。
<!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 Line object</h2> <p> You can see that the line object is not centered vertically with respect to the current viewport of canvas </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 Line object var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 6, }); // Add it to the canvas canvas.add(line); </script> </body> </html>
讓我們來看一個程式碼範例,看看當 使用viewportCenterV方法。在這種情況下,我們的線條物件將垂直居中 相對於畫布的當前視窗。
<!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>Using the viewportCenterV method</h2> <p> You can see that the line object is centered vertically with respect to the current viewport of canvas </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 Line object var line = new fabric.Line([200, 100, 100, 40], { stroke: "blue", strokeWidth: 6, }); // Add it to the canvas canvas.add(line); // Using the viewportCenterV method line.viewportCenterV(); </script> </body> </html>
以上是FabricJS – 如何讓 Line 物件在畫布的目前視窗上垂直居中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!