idraw/examples/renderer/lib/data/text.js

100 lines
2.1 KiB
JavaScript
Raw Permalink Normal View History

2021-06-02 16:40:15 +00:00
const data = {
// bgColor: '#ffffff',
elements: [
{
2021-07-09 10:19:10 +00:00
name: "text-001",
2021-06-02 16:40:15 +00:00
x: 10,
y: 10,
w: 200,
h: 100,
2021-07-09 10:19:10 +00:00
type: "text",
2021-06-02 16:40:15 +00:00
desc: {
fontSize: 20,
2021-10-09 14:43:25 +00:00
color: "#ffffff",
2021-07-09 10:19:10 +00:00
text: "生活就像海洋,只有意志坚强的人,才能到达彼岸。",
2021-07-26 04:05:22 +00:00
fontFamily: '',
fontWeight: 'bold',
borderRadius: 20,
borderWidth: 2,
2021-10-09 15:06:37 +00:00
borderColor: "#03a9f4",
2021-07-26 03:43:43 +00:00
bgColor: '#f0f0f0',
2021-10-09 14:43:25 +00:00
strokeColor: '#2196f3',
strokeWidth: 1,
2021-07-09 10:19:10 +00:00
},
2021-06-02 16:40:15 +00:00
},
{
2021-07-09 10:19:10 +00:00
name: "text-002",
2021-10-09 15:06:37 +00:00
x: 120,
y: 120,
w: 100,
h: 60,
2021-06-02 16:40:15 +00:00
// angle: 30,
2021-07-09 10:19:10 +00:00
type: "text",
2021-06-02 16:40:15 +00:00
desc: {
2021-10-09 15:06:37 +00:00
fontSize: 40,
fontWeight: 'blod',
2021-07-09 10:19:10 +00:00
text: "Hello Text",
2021-10-10 15:33:52 +00:00
// color: "#999999",
color: "#ffffff",
borderRadius: 60,
2021-10-09 15:06:37 +00:00
borderWidth: 4,
2021-10-10 15:32:13 +00:00
borderColor: "#03a9f4",
textShadowColor: '#000000',
textShadowOffsetX: 2,
textShadowOffsetY: 2,
2021-10-10 15:33:52 +00:00
textShadowBlur: 2,
2021-10-10 15:51:20 +00:00
shadowColor: '#000000',
shadowOffsetX: 2,
shadowOffsetY: 2,
shadowBlur: 2,
2021-07-09 10:19:10 +00:00
},
2021-06-02 16:40:15 +00:00
},
2021-06-03 10:05:06 +00:00
{
2021-07-09 10:19:10 +00:00
name: "text-003",
2021-06-03 10:05:06 +00:00
x: 160,
y: 160,
w: 200,
h: 100,
2021-07-09 10:19:10 +00:00
type: "text",
2021-08-25 14:06:53 +00:00
operation: {
invisible: true,
lock: true,
},
2021-06-03 10:05:06 +00:00
desc: {
fontSize: 20,
2021-07-09 10:19:10 +00:00
color: "#333333",
text: "生活就像海洋,只有意志坚强的人,才能到达彼岸。",
fontFamily: "",
textAlign: "right",
borderRadius: 20,
borderWidth: 2,
2021-10-09 15:06:37 +00:00
borderColor: "#03a9f4",
2021-07-26 03:43:43 +00:00
bgColor: '#f0f0f0',
2021-07-09 10:19:10 +00:00
},
2021-06-03 10:05:06 +00:00
},
{
2021-07-09 10:19:10 +00:00
name: "text-004",
x: 300,
y: 240,
w: 290,
h: 120,
2021-07-09 10:19:10 +00:00
type: "text",
2021-06-03 10:05:06 +00:00
desc: {
fontSize: 20,
2021-07-09 10:19:10 +00:00
color: "#333333",
text: "Life is like an ocean.\r\nOnly those with strong \nwill can reach the other shore.",
2021-07-09 10:19:10 +00:00
fontFamily: "",
textAlign: "right",
borderRadius: 20,
borderWidth: 2,
2021-10-09 15:06:37 +00:00
borderColor: "#03a9f4",
2021-07-26 03:43:43 +00:00
bgColor: '#f0f0f0',
2021-07-09 10:19:10 +00:00
},
},
],
};
2021-06-02 16:40:15 +00:00
2021-07-09 10:19:10 +00:00
export default data;