當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Fabric.js Polyline stroke屬性用法及代碼示例


在本文中,我們將看到如何使用FabricJS設置畫布折線的筆觸顏色。畫布折線表示折線是可移動的,可以根據需要進行拉伸。此外,折線可以在涉及初始筆劃顏色,高度,寬度,填充顏色或筆劃寬度時進行自定義。

為了使之成為可能,我們將使用一個名為FabricJS的JavaScript庫。導入庫後,我們將在body標簽中創建一個包含折線的canvas塊。之後,我們將初始化FabricJS提供的Canvas和Polyline實例,並使用stroke屬性設置折線的筆觸顏色,並在Canvas上渲染Polyline,如下例所示。

用法:

var polyline = new fabric.Polyline(
    Points, 
    { 
        stroke:string
    }
)

參數:該函數接受上述和以下所述的兩個參數:

  • points:它保存折線所有點的起點和終點坐標。
  • stroke:它是指定筆觸顏色的字符串。

下麵的示例說明JavaScript中的折線描邊屬性:



例:

Java腳本

<!DOCTYPE html> 
<html> 
  
<head> 
    <!-- Loading the FabricJS library -->
    <script src= 
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js"> 
    </script> 
</head> 
  
<body> 
    <div style="text-align:center; width:600px;"> 
        <h1 style="color:green;"> 
            GeeksforGeeks 
        </h1> 
        <b> 
            Fabric.js | Polyline stroke Property 
        </b> 
    </div> 
  
    <canvas id="canvas" width="600" height="200" 
        style="border:1px solid #000000;"> 
    </canvas> 
      
    <script> 
  
        // Initiate a Canvas instance  
        var canvas = new fabric.Canvas("canvas"); 
  
        // Initiate a Polyline instance  
        var polyline = new fabric.Polyline([ 
            { 
                x:300, 
                y:10 
            }, { 
                x:350, 
                y:50 
            }, { 
                x:350, 
                y:180 
            }, { 
                x:250, 
                y:180 
            }, { 
                x:250, 
                y:50 
            }, { 
                x:300, 
                y:10 
            }], { 
  
            // Set the color of 
            // the stroke 
            stroke:'green', 
  
            // Set the width of 
            // the stroke 
            strokeWidth:4 
        }); 
  
        // Render the Polyline in canvas  
        canvas.add(polyline);  
    </script> 
</body> 
  
</html>

輸出:




相關用法


注:本文由純淨天空篩選整理自pratapworkmail大神的英文原創作品 Fabric.js Polyline stroke Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。