2021-06-03 06:22:43 +00:00
|
|
|
const data = {
|
|
|
|
|
// bgColor: '#ffffff',
|
|
|
|
|
elements: [
|
|
|
|
|
{
|
2021-07-26 06:45:24 +00:00
|
|
|
name: "circle-001",
|
2021-06-03 06:22:43 +00:00
|
|
|
x: 10,
|
|
|
|
|
y: 10,
|
2021-07-26 06:45:24 +00:00
|
|
|
w: 100,
|
2021-06-03 06:22:43 +00:00
|
|
|
h: 100,
|
2021-07-09 10:19:10 +00:00
|
|
|
type: "circle",
|
2021-06-03 06:22:43 +00:00
|
|
|
desc: {
|
2021-09-08 01:16:00 +00:00
|
|
|
bgColor: "#f0f0f0",
|
2021-07-26 06:45:24 +00:00
|
|
|
borderWidth: 2,
|
2021-10-10 16:15:29 +00:00
|
|
|
borderColor: '#999999',
|
|
|
|
|
|
|
|
|
|
shadowColor: '#03a9f4',
|
|
|
|
|
// shadowColor: '#000000',
|
|
|
|
|
shadowOffsetX: 2,
|
|
|
|
|
shadowOffsetY: 2,
|
|
|
|
|
shadowBlur: 2,
|
2021-07-09 10:19:10 +00:00
|
|
|
},
|
2021-06-03 06:22:43 +00:00
|
|
|
},
|
|
|
|
|
{
|
2021-07-26 06:45:24 +00:00
|
|
|
name: "circle-002",
|
|
|
|
|
x: 100,
|
2021-06-03 06:22:43 +00:00
|
|
|
y: 80,
|
|
|
|
|
w: 200,
|
2021-07-26 06:45:24 +00:00
|
|
|
h: 100,
|
|
|
|
|
angle: 30,
|
|
|
|
|
type: "circle",
|
2021-06-03 06:22:43 +00:00
|
|
|
desc: {
|
2021-09-08 01:16:00 +00:00
|
|
|
bgColor: "#f0f0f0",
|
2021-07-26 06:45:24 +00:00
|
|
|
borderWidth: 2,
|
2021-10-10 16:15:29 +00:00
|
|
|
borderColor: '#666666',
|
|
|
|
|
|
2021-07-09 10:19:10 +00:00
|
|
|
},
|
2021-06-03 06:22:43 +00:00
|
|
|
},
|
|
|
|
|
{
|
2021-07-26 06:45:24 +00:00
|
|
|
name: "circle-003",
|
|
|
|
|
x: 200,
|
|
|
|
|
y: 200,
|
2021-06-03 06:22:43 +00:00
|
|
|
w: 200,
|
2021-07-26 06:45:24 +00:00
|
|
|
h: 100,
|
|
|
|
|
type: "circle",
|
|
|
|
|
angle: 0,
|
2021-06-03 06:22:43 +00:00
|
|
|
desc: {
|
2021-09-08 01:16:00 +00:00
|
|
|
bgColor: "#f0f0f0",
|
2021-07-26 06:45:24 +00:00
|
|
|
borderWidth: 2,
|
|
|
|
|
borderColor: '#666666'
|
2021-07-09 10:19:10 +00:00
|
|
|
},
|
2021-06-03 06:22:43 +00:00
|
|
|
},
|
|
|
|
|
{
|
2021-07-26 06:45:24 +00:00
|
|
|
name: "circle-004",
|
|
|
|
|
x: 220,
|
|
|
|
|
y: 80,
|
|
|
|
|
w: 300,
|
|
|
|
|
h: 300,
|
|
|
|
|
type: "circle",
|
2021-06-03 06:22:43 +00:00
|
|
|
desc: {
|
2021-10-10 16:15:29 +00:00
|
|
|
// bgColor: "#f0f0f0",
|
|
|
|
|
bgColor: "#000000",
|
2021-07-26 06:45:24 +00:00
|
|
|
borderWidth: 10,
|
2021-10-10 16:15:29 +00:00
|
|
|
borderColor: '#666666',
|
|
|
|
|
|
|
|
|
|
shadowColor: '#03a9f4',
|
|
|
|
|
// shadowColor: '#000000',
|
|
|
|
|
shadowOffsetX: 2,
|
|
|
|
|
shadowOffsetY: 2,
|
|
|
|
|
shadowBlur: 2,
|
2021-07-09 10:19:10 +00:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|
2021-06-03 06:22:43 +00:00
|
|
|
|
2021-07-09 10:19:10 +00:00
|
|
|
export default data;
|