在本教程中,我們將使用 FabricJS 建立一個帶有等待遊標移動物件的三角形。 wait 是可用的本機遊標樣式之一,也可以在 FabricJS 畫布中使用。 FabricJS 提供了各種類型的遊標,例如預設、全滾動、十字準線、列調整大小、行調整大小等,它們在幕後重用了本機遊標。
moveCursor 屬性設定當物件在畫布中移動時間標記的樣式。
new fabric.Triangle({ moveCursor: String }: Object)
#選項(可選) - 此參數是一個物件 為我們的三角形提供額外的客製化。使用此參數,可以變更與 moveCursor 為屬性的物件相關的屬性,例如顏色、遊標、描邊寬度和許多其他屬性。
moveCursor - 這個屬性接受一個字串#,它允許我們設定在畫布上移動此三角形物件時的預設遊標值。該值決定移動畫布物件時所使用的遊標類型。
物件移動時的預設遊標值在畫布上移動
預設情況下,當我們在畫布中圍繞三角形物件移動時,遊標類型是移動。讓我們看一個程式碼範例來理解這一點。
<!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 cursor value when object is moved around the canvas</h2> <p>You can move around the triangle to see that the default cursor type is "move"</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 triangle object var triangle = new fabric.Triangle({ left: 105, top: 75, width: 90, height: 80, fill: "#eedc82", stroke: "#bcb88a", strokeWidth: 5, }); // Add it to the canvas canvas.add(triangle); </script> </body> </html>
將moveCursor 屬性作為鍵傳遞給值
在此範例中,我們將moveCursor 鍵傳遞給三角形類別值為「等待」。這將確保當我們在畫布中的物件周圍移動時,遊標值處於等待狀態。下面的程式碼範例對此進行了說明。
<!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 moveCursor property as key with a value</h2> <p>You can move around the triangle to see that the cursor type is "wait"</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 triangle object var triangle = new fabric.Triangle({ left: 105, top: 75, width: 90, height: 80, fill: "#eedc82", stroke: "#bcb88a", strokeWidth: 5, moveCursor: "wait", }); // Add it to the canvas canvas.add(triangle); </script> </body> </html>
以上是如何使用 FabricJS 在移動物件上建立帶有等待遊標的三角形?的詳細內容。更多資訊請關注PHP中文網其他相關文章!