UNPKG
inmarkx
Version:
latest (0.0.2)
0.0.2
0.0.1
Image mark
github.com/lhywell/inmark
lhywell/inmark
inmarkx
/
src
/
config
/
EditRect.js
22 lines
•
355 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
*
默认矩形编辑配置
*/
export
default
{
shape:
{
x:
0
,
y:
0
,
width:
5
,
height:
5
, },
data:
{
type:
'editRect'
},
style:
{
fill:
'rgba(255, 255, 255,1)'
,
stroke:
'#CC3737'
,
lineWidth:
2
,
strokeNoScale:
true
},
zlevel:
3
,
draggable:
true
}
;