在本文中,我們將看到如何使用Fabric.js設置畫布Textbox的筆觸顏色。 Fabric.js中的文本框是可移動的,可以根據需要進行拉伸。此外,當涉及初始筆劃顏色,高度,寬度,填充顏色或筆劃寬度時,可以自定義文本框。
為了使其成為可能,我們將使用一個名為Fabric.js的JavaScript庫。導入庫後,我們將在body標簽中創建一個canvas塊,其中將包含Textbox。之後,我們將初始化Fabric.js提供的Canvas和Textbox的實例,使用stroke屬性設置Textbox的筆觸顏色,並在畫布上呈現Textbox,如下麵的示例所示。
用法:
fabric.Textbox('text', { stroke:string });
參數:該函數接受如上所述和以下描述的單個參數:
- stroke:它指定筆觸顏色。
例:本示例使用Fabric.js設置文本框的筆觸顏色。
HTML
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/4.3.0/fabric.min.js">
</script>
</head>
<body>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js | Textbox stroke 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");
// Create a new Textbox instance
var text = new fabric.Textbox(
'A Computer Science Portal', {
width:500,
stroke:"green"
});
// Render the Textbox in canvas
canvas.add(text);
canvas.centerObject(text);
</script>
</body>
</html>
輸出:
相關用法
- CSS stroke-width用法及代碼示例
- CSS stroke-linecap用法及代碼示例
- CSS stroke-opacity用法及代碼示例
- CSS stroke-dashoffset用法及代碼示例
- CSS stroke-dasharray用法及代碼示例
- CSS stroke-linejoin用法及代碼示例
- CSS stroke-miterlimit用法及代碼示例
- Fabric.js Text stroke屬性用法及代碼示例
- Fabric.js Circle stroke屬性用法及代碼示例
- Fabric.js Rect stroke屬性用法及代碼示例
- Fabric.js Triangle stroke屬性用法及代碼示例
- Fabric.js Ellipse stroke屬性用法及代碼示例
- Fabric.js Polyline stroke屬性用法及代碼示例
- CSS stroke-color屬性用法及代碼示例
- Fabric.js Polygon stroke屬性用法及代碼示例
- Fabric.js line stroke屬性用法及代碼示例
- Fabric.js Path stroke屬性用法及代碼示例
- Fabric.js Group stroke屬性用法及代碼示例
- HTML canvas stroke()用法及代碼示例
- p5.js stroke()用法及代碼示例
- Node.js GM stroke()用法及代碼示例
注:本文由純淨天空篩選整理自blalverma92大神的英文原創作品 Fabric.js Textbox stroke Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。