idraw/examples/board/features/lib/data.js

61 lines
801 B
JavaScript
Raw Permalink Normal View History

2021-05-25 04:58:29 +00:00
const data = {
elements: [
{
x: 10,
y: 10,
w: 200,
h: 120,
type: "rect",
2021-05-25 04:58:29 +00:00
desc: {
color: "#f0f0f0",
},
2021-05-25 04:58:29 +00:00
},
{
x: 80,
y: 80,
w: 200,
h: 120,
type: "rect",
2021-05-25 04:58:29 +00:00
desc: {
color: "#cccccc",
},
2021-05-25 04:58:29 +00:00
},
{
x: 160,
y: 160,
w: 200,
h: 120,
type: "rect",
2021-05-25 04:58:29 +00:00
desc: {
color: "#c0c0c0",
},
2021-05-25 04:58:29 +00:00
},
{
x: 400 - 10,
y: 300 - 10,
w: 200,
h: 100,
type: "rect",
2021-05-25 04:58:29 +00:00
desc: {
color: "#e0e0e0",
},
2021-06-07 06:21:30 +00:00
},
{
x: 300 - 10,
y: 200 - 10,
w: 20,
h: 20,
type: "rect",
2021-06-07 06:21:30 +00:00
desc: {
color: "#000000",
},
},
],
};
2021-05-25 04:58:29 +00:00
function getData() {
return data;
}
export { getData };