在本文中,我們將看到如何使用FabricJS更改畫布Textbox的paintFirst屬性。畫布文本框表示文本框是可移動的,可以根據需要進行拉伸。此外,當涉及初始筆劃顏色,高度,寬度,填充顏色或筆劃寬度時,可以自定義文本框。
為了使其成為可能,我們將使用一個名為FabricJS的JavaScript庫。導入庫後,我們將在body標簽中創建一個canvas塊,其中將包含Textbox。此後,我們將初始化FabricJS提供的Canvas和Textbox的實例,並使用paintFirst屬性更改Textbox的paint first屬性值,並在畫布上呈現文本框,如下麵的示例所示。
用法:
fabric.Ellipse({ rx:number, ry:number, fill:string, paintFirst:string });
參數:該函數接受上述和以下所述的四個參數:
- rx:它指定水平半徑。
- ry:它指定垂直半徑。
- fill:它指定填充橢圓的顏色。
- paintFirst:它指定paintFirst屬性的字符串值。
例:本示例使用FabricJS設置畫布橢圓的paintFirst屬性。
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js Ellipse paintFirst Property
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js Ellipse paintFirst Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx:150,
ry:75,
fill:'green',
stroke:'blue',
paintFirst:'fill'
});
// Render the ellipse in canvas
canvas.add(ellipse);
canvas.centerObject(ellipse);
</script>
</body>
</html>
輸出:
相關用法
- Fabric.js Polygon paintFirst屬性用法及代碼示例
- Fabric.js Textbox paintFirst屬性用法及代碼示例
- Fabric.js Polyline paintFirst屬性用法及代碼示例
- Fabric.js Circle paintFirst屬性用法及代碼示例
- Fabric.js Group paintFirst屬性用法及代碼示例
- Fabric.js Ellipse borderOpacityWhenMoving屬性用法及代碼示例
- Fabric.js Ellipse fill屬性用法及代碼示例
- Fabric.js Ellipse hasControls屬性用法及代碼示例
- Fabric.js Ellipse centeredScaling屬性用法及代碼示例
- Fabric.js Ellipse cornerStrokeColor屬性用法及代碼示例
- Fabric.js Ellipse cornerStyle屬性用法及代碼示例
- Fabric.js Ellipse borderDashArray屬性用法及代碼示例
- Fabric.js Ellipse cornerDashArray屬性用法及代碼示例
- Fabric.js Ellipse cornerColor屬性用法及代碼示例
- Fabric.js Ellipse borderColor屬性用法及代碼示例
- Fabric.js Ellipse centeredRotation屬性用法及代碼示例
- Fabric.js Ellipse lockScalingFlip屬性用法及代碼示例
- Fabric.js Ellipse backgroundColor屬性用法及代碼示例
- Fabric.js Ellipse hasRotatingPoint屬性用法及代碼示例
- Fabric.js Ellipse left屬性用法及代碼示例
- Fabric.js Ellipse lockMovementX屬性用法及代碼示例
- Fabric.js Ellipse lockMovementY屬性用法及代碼示例
- Fabric.js Ellipse lockRotation屬性用法及代碼示例
注:本文由純淨天空篩選整理自blalverma92大神的英文原創作品 Fabric.js Ellipse paintFirst Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。