이 튜토리얼에서는 FabricJS를 사용하여 원의 제어 모서리 색상을 설정합니다. cornerColor 속성을 사용하면 객체가 활성화될 때 컨트롤 모서리의 색상을 조작할 수 있습니다.
new fabric.Circle({ cornerColor: String }: Object)
options(선택 사항) - 이 매개 변수는 원의 추가 사용자 정의를 위한 옵션을 제공하는 object입니다. 이 매개변수를 사용하면 cornerColor 속성과 관련된 개체의 색상, 커서, 획 너비 및 기타 여러 속성을 변경할 수 있습니다.
cornerColor - 이 속성은 선택한 개체의 제어 모서리에 색상을 할당할 수 있는 string을 허용합니다.
CornerColor를 키로 전달하고 색상 이름을 값으로 사용
cornerColor 속성을 사용하여 색상을 변경하는 예를 살펴보겠습니다. 이 경우 키에 "black" 값을 할당하여 컨트롤 모서리가 검은색으로 나타나도록 합니다.
<!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 colour of controlling corners of circle using FabricJS</h2> <p>Select the object and notice the color of its controlling corners. Here we have used the <b>cornerColor</b> property to set the corners black. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var cir = new fabric.Circle({ left: 215, top: 100, fill: "white", radius: 50, stroke: "#c154c1", strokeWidth: 5, borderColor: "#daa520", cornerColor: "black" }); // Adding it to the canvas canvas.add(cir); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
cornerColor 속성에 RGBA 값 할당
단순한 색상 이름을 전달하는 대신 RGBA 값을 키의 string 값에 할당할 수 있습니다. RGBA는 빨간색, 녹색, 파란색 및 투명도(알파)를 나타냅니다. 이를 달성하는 방법에 대한 예를 살펴보겠습니다 −
<!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 colour of controlling corners of circle using FabricJS</h2> <p>Select the object and notice the color of its controlling corners. Here we have used the <b>cornerColor</b> and assigned it an "rgba" value to set the corners purple. </p> <canvas id="canvas"></canvas> <script> // Initiate a canvas instance var canvas = new fabric.Canvas("canvas"); var cir = new fabric.Circle({ left: 215, top: 100, fill: "white", radius: 50, stroke: "#c154c1", strokeWidth: 5, borderColor: "#daa520", cornerColor: "rgb(255,20,147)" }); // Adding it to the canvas canvas.add(cir); canvas.setWidth(document.body.scrollWidth); canvas.setHeight(250); </script> </body> </html>
위 내용은 FabricJS를 사용하여 원 제어 모서리의 색상을 설정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!