forked from info-beamer/package-flickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.json
56 lines (55 loc) · 1.34 KB
/
node.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
{
"name": "Flickr Display",
"permissions": {
"network": "Needs to access Flickr API"
},
"options": [{
"title": "Display options",
"type": "section"
}, {
"title": "Display time",
"ui_width": 4,
"name": "display_time",
"type": "select",
"doc_link": true,
"options": [
[10, "10 seconds"],
[30, "30 seconds (default)"],
[60, "one minute"],
[120, "two minutes"]
],
"default": 30
}, {
"title": "Switch time",
"ui_width": 4,
"name": "switch_time",
"type": "select",
"doc_link": true,
"options": [
[0, "Instantly"],
[0.2, "Short"],
[0.4, "Medium (default)"],
[0.8, "Long"]
],
"default": 0.4
}, {
"title": "Ken Burns effect",
"ui_width": 4,
"name": "kenburns",
"type": "boolean",
"hint": "Use Ken Burns effect for images",
"doc_link": true,
"default": false
},
{
"title": "",
"name": "flickr",
"type": "custom",
"page": "flickr.html",
"default": {
"group": "80641914@N00",
"name": "Flickr's 100 Best",
"api_key": "1f74390565dce54fb0c569e18497d5bb"
}
}]
}