我们可以通过实例化一个 Konva.Line()
对象创建 Blob,并且同时设置属性 closed = true
和tension
值。
我们使用 points
属性创建线的路径,如果线包含三个点(坐标:x
, y
),你需要这样定义 points
属性: [x1, y1, x2, y2, x3, y3]
。
之所以使用简单的一维数字数组,因为相对于对象(例如: [{x: 0, y: 0}, {x: 0, y: 0}])运行起来更快而且需要的内存也更少。
点击 Konva.Line documentation 查看详细属性和方法说明。d
Konva Blob Demoview raw<!DOCTYPE html> <html> <head> <script src="https://unpkg.com/konva@4.0.18/konva.min.js"></script> <meta charset="utf-8" /> <title>Konva Line Blob Demo</title> <style> body { margin: 0; padding: 0; overflow: hidden; background-color: #f0f0f0; } </style> </head> <body> <div id="container"></div> <script> var width = window.innerWidth; var height = window.innerHeight;
var stage = new Konva.Stage({ container: 'container', width: width, height: height });
var layer = new Konva.Layer();
var blob = new Konva.Line({ points: [23, 20, 23, 160, 70, 93, 150, 109, 290, 139, 270, 93], fill: '#00D2FF', stroke: 'black', strokeWidth: 5, closed: true, tension: 0.3 });
layer.add(blob);
stage.add(layer); </script> </body> </html>
|