在本教學中,我們將學習如何使用 FabricJS 設定 Circle 的最小允許比例。圓形是 FabricJS 提供的各種形狀之一。為了創建一個圓圈,我們必須創建一個 Fabric.Circle 類別的實例並將其添加到畫布中。我們可以透過添加填滿顏色來自訂圓形對象,消除其邊框,甚至更改其尺寸。同樣,我們也可以使用 minScaleLimit 屬性來設定其允許的最小比例。
new fabric.Circle({ minScaleLimit : Number }: Object)
#選項(可選) - 此參數是一個物件 為我們的圈子提供額外的客製化。使用此參數,可以變更與 minScaleLimit 為屬性的物件相關的顏色、遊標、邊框寬度和許多其他屬性。
#minScaleLimit - 此屬性接受數字 strong> 作為允許我們控制圓的最小允許比例的值。
預設圓形物件的外觀
讓我們看一下程式碼,看看當不使用minScaleLimit 屬性時,圓形物件是什麼樣子。在這種情況下,我們將能夠自由縮放對象,因為沒有設定最小限制。
<!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>Setting the minimum allowed scale value of circle using FabricJS</h2> <p>Select the object and scale it down by dragging one of its controlling corners. Here you can scale down the object freely since there is no minimum limit set.</p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var circle = new fabric.Circle({ left: 115, top: 50, radius: 50, fill: "#ff1493" }); // Adding it to the canvas canvas.add(circle); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
將minScaleLimit 屬性作為帶有自訂值的鍵傳遞
在此範例中,我們將看到為minScaleLimit 屬性賦值如何更改畫布中圓形物件的最小允許比例值。這裡我們使用 0.8 作為值,這意味著我們將無法將物件縮小到半徑小於 64 像素的半徑,該半徑是透過半徑 * 限制計算的(0.8 * 80 = 64 像素)。
<!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>Setting the minimum allowed scale value of circle using FabricJS</h2> <p>Select the object and try to scale it down by dragging one of its controlling corners. You cannot scale down the object freely, as we have set <b>minScaleLimit</b> at 0.8. So, the minimum scale of the circle must be at least 80% of the original radius, beyond which you cannot scale it down any further. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var circle = new fabric.Circle({ left: 115, top: 50, radius: 80, fill: "#ff1493", minScaleLimit: 0.8 }); // Adding it to the canvas canvas.add(circle); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
以上是如何使用FabricJS設定Circle允許的最小比例值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!