在本教學中,我們將學習如何使用 FabricJS 停用 Ellipse 的居中縮放。橢圓形是 FabricJS 提供的各種形狀之一。為了創建一個橢圓,我們必須建立一個 Fabric.Ellipse 類別的實例並將其新增到畫布中。透過控制項進行縮放時,為 centeredScaling 屬性指派「true」值,使用中心作為物件的變換原點。
new fabric.Ellipse({ centeredScaling: Boolean }: Object)
#選項(可選)- 此參數是一個物件 為我們的橢圓提供額外的客製化。使用此參數,可以變更與 centeredScaling 屬性相關的物件的顏色、遊標、描邊寬度和許多其他屬性。
#centeredScaling - 此屬性接受布爾值 em> 值。當此屬性為True時,物件使用中心作為變換原點。
將centeredScaling作為鍵傳遞並為其指派一個「true」值
以下範例示範了橢圓物件在centeredScaling時的行為方式屬性已啟用。當我們放大物件時,變換的原點是橢圓的中心。
<!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>How to disable the centered scaling of Ellipse using FabricJS?</h2> <p>Select the object and stretch it from its corners. The ellipse will scale up from its center. This is the default behavior.</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipse = new fabric.Ellipse({ left: 215, top: 100, fill: "white", rx: 90, ry: 50, stroke: "#c154c1", strokeWidth: 5, borderColor: "#daa520", centeredScaling: true, }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
停用centeredScaling 屬性
我們可以透過為其指定「false」值來停用centeredScaling 屬性。這將不再使用橢圓的中心作為變換中心。這是一個程式碼,用於演示 -
<!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>How to disable the centered scaling of Ellipse using FabricJS?</h2> <p>Select the object and stretch it from its corners. You will notice the object scales up but not from its center because we have set <b>centeredScaling</b> as False. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); // Initiate an ellipse instance var ellipse = new fabric.Ellipse({ left: 215, top: 100, fill: "", rx: 90, ry: 50, stroke: "#c154c1", strokeWidth: 5, borderColor: "#daa520", centeredScaling: false, }); // Adding it to the canvas canvas.add(ellipse); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
以上是如何使用 FabricJS 停用 Ellipse 的居中縮放?的詳細內容。更多資訊請關注PHP中文網其他相關文章!