이 기사에서는 FabricJS를 사용하여 허용되지 않는 커서가 있는 캔버스를 만듭니다. 허용되지 않는 커서는 요청된 작업이 수행되지 않음을 나타내는 데 사용될 수 있습니다. 허용되지 않음은 사용 가능한 기본 커서 스타일 중 하나이며 FabricJS 캔버스에서도 사용할 수 있습니다.
FabricJS는 기본 커서를 재사용하는 기본 커서, 전체 스크롤, 십자선, 열 크기 조정, 행 크기 조정 등과 같은 다양한 유형의 커서를 제공합니다. 각 커서는 운영 체제에 따라 조금씩 다르게 보입니다. Re Grammar
new fabric.Canvas(element: HTMLElement|String, { defaultCursor: String }: Object)
요소 - 이것은 요소 자체이며,
Options(선택 사항) - 이 매개변수는 캔버스에 대한 추가 사용자 정의를 제공하는 개체입니다. 이 매개변수를 사용하면 색상, 커서, 테두리 너비 등 캔버스와 관련된 많은 속성을 변경할 수 있습니다. DefaultCursor는 원하는 커서 유형을 설정할 수 있는 속성입니다.
<!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>Canvas with not-allowed cursor using FabricJS</h2> <p>Bring the cursor inside the canvas to see the changed shape of cursor</p> <canvas id="canvas"></canvas> <script> //Initiate a canvas instance var canvas = new fabric.Canvas("canvas", { defaultCursor: "not-allowed" }); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
예 2
<!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>Canvas with not-allowed cursor using FabricJS</h2> <p>Here we have added a circle to the canvas along with the not-allowed cursor</p> <canvas id="canvas"></canvas> <script> //Initiate a canvas instance var canvas = new fabric.Canvas("canvas", { defaultCursor: "not-allowed" }); // Initiate a Circle instance var circle = new fabric.Circle({ radius: 50, fill: "green" }); // Render the circle in canvas canvas.add(circle); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
와 함께 캔버스에 원을 추가합니다.
위 내용은 FabricJS를 사용하여 허용되지 않는 커서가 있는 캔버스를 만드는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!