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

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

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

      var star = new Konva.Star({
        x: stage.getWidth() / 2,   //กำหนดจุดวาดตามแนวแกน x
        y: stage.getHeight() / 2,  //กำหนดจุดวาดตามแนวแกน y
        numPoints: 6,              // จำนวนจุดดาว
        innerRadius: 40,           // มุมรัศมีภายใน
        outerRadius: 70,           // มุมรัศมีภายนอก
        fill: 'yellow',            // ใส่สีพื้น
        stroke: 'black',           // กำหนดสีเส้น
        strokeWidth: 4             // กำหนดขนาดเส้น
      });

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

        // เพิ่ม 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