-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkonva.html
112 lines (92 loc) · 2.07 KB
/
konva.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/[email protected]/konva.min.js"></script>
<title>Document Konva</title>
</head>
<body>
<div id="container"></div>
<script>
var stage = new Konva.Stage({
height:600,
width : 600,
container:"container",
});
var layer = new Konva.Layer();
stage.add(layer)
let rect = new Konva.Rect({
x:100,
y:100,
width:200,
height:100,
fill:"blue",
stroke: "orange",
cornerRadius: 12,
draggable: "true"
});
layer.add(rect);
let circ = new Konva.Circle({
x:50,
y:100,
width:200,
height:100,
fill:"darkred",
stroke: "orange",
cornerRadius: 12,
draggable: "true"
});
layer.add(circ);
let text = new Konva.Text({
x:50,
y:100,
width:200,
height:100,
text: "Ade is a King",
draggable: "true",
fontSize: 24,
})
layer.add(text)
let line = new Konva.Line({
x:300,
y:400,
width:200,
height:50,
points: [ 0,0,200,0,100,-150],
closed:"true",
draggable: "true",
stroke: " black",
fill: "coral",
lineJoin:"round",
strokewidth:8
})
layer.add(line)
// EVENTS
circ.on ("mouseover",
function(){
this.fill( "black");
this.stroke( " white")
}
)
circ.on ("mouseout",
function(){
this.fill( "darkred");
this.stroke( " orange")
})
line.on( " canvasclick",
function(){
this.x(300),
this.y (400),
this. width(200),
this.height(50),
this.points[ 0,0,200,0,100,-150],
this.draggable("true"),
this.stroke(" black"),
this.fill("coral"),
this.lineJoin("round"),
layer.draw();
})
</script>
</body>
</html>