การวาดรูปทรงวงกลมด้วย KonvaJS

เพื่อที่จะสร้างรูปทรงวงกลมด้วย KonvaJS นั้น  เราจะใช้ Konva.Circle() ครับ. สำหรับรายละเอียดวิธีการใช้แอตทริบิวต์และเมธอดสามารถดูได้จากที่นี่ครับ API Document : http://konvajs.github.io/docs/shapes/Circle.html

ตัวอย่าง แทคที่ใช้
ตัวอย่าง : วาดรูปทรงวงกลม
      var stage = new Konva.Stage({
        container: 'container',
        width: 578,
        height: 200
      });

      var layer = new Konva.Layer();

      var circle = new Konva.Circle({
        x: stage.getWidth() / 2,   // กำหนดแนวแกน x
        y: stage.getHeight() / 2,  // กำหนดแนวแกน y
        radius: 70,                // กำหนดรัศมี
        fill: 'red',              // ใส่สีพื้น
        stroke: 'black',           // กำหนดสีเส้น
        strokeWidth: 4             // กำหนดขนาดเส้น
      });

      // เพิ่ม circle เข้าไปใน layer
      layer.add(circle);

      // เพิ่ม layer เข้าไปใน stage
      stage.add(layer);

ผลลัพธ์ที่ได้คือ

About Nop

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment

0 comments:

Post a Comment