-
Notifications
You must be signed in to change notification settings - Fork 126
/
index.json
101 lines (100 loc) · 2.43 KB
/
index.json
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
{
"$jason": {
"head": {
"title": "image"
},
"body": {
"header": {
"menu": {
"text": "View JSON",
"href": {
"url": "https://github.com/Jasonette/Jasonpedia/blob/gh-pages/view/component/image/index.json",
"view": "web"
}
}
},
"sections": [{
"header": {
"type": "label",
"style": {
"background": "#f5f5f5"
},
"text": "Full width image"
},
"items": [{
"type": "image",
"style": {
"width": "100%",
"padding": "0"
},
"url": "http://i8.mangareader.net/ito-junjis-cat-diary/1/ito-junjis-cat-diary-2241289.jpg"
}]
}, {
"header": {
"type": "label",
"style": {
"background": "#f5f5f5"
},
"text": "rounded image"
},
"items": [{
"type": "vertical",
"style": {
"padding": "50",
"background": "#0000ff",
"align": "center"
},
"components": [{
"type": "image",
"url": "https://pbs.twimg.com/profile_images/557061751150112768/eMwi4Xz2.jpeg",
"style": {
"width": "200",
"corner_radius": "100"
}
}]
}]
}, {
"header": {
"type": "label",
"style": {
"background": "#f5f5f5"
},
"text": "rounded image with transparency"
},
"items": [{
"type": "vertical",
"style": {
"padding": "50",
"background": "#0000ff",
"align": "center"
},
"components": [{
"type": "image",
"url": "https://pbs.twimg.com/profile_images/557061751150112768/eMwi4Xz2.jpeg",
"style": {
"width": "200",
"opacity": "0.3",
"corner_radius": "100"
}
}]
}]
}, {
"header": {
"type": "label",
"style": {
"background": "#f5f5f5"
},
"text": "animated gif"
},
"items": [{
"type": "image",
"url": "https://media.giphy.com/media/13CoXDiaCcCoyk/giphy.gif",
"style": {
"padding": "0",
"width": "100%"
}
}]
}]
}
}
}