-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2.json
67 lines (67 loc) · 2.27 KB
/
2.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
{
"$jason": {
"head": {
"title": "Splash Screen",
"offline" : true,
"actions": {
"$load":{
"type": "$set",
"options": {
"counter": "0"
},
"success": {
"type": "$timer.start",
"options": {
"interval": "2",
"name" : "splash",
"repeats": "false",
"action": {
"trigger": "tick"
}
}
}
},
"tick": {
"type": "$set",
"options": {
"counter": "{{ $get.counter + 1 }}"
},
"success": {
"trigger": "{{ $get.counter > 1 ? 'show_app' : 'show_splash' }}"
}
},
"show_splash": {
"type" : "$render"
},
"show_app": {
"type" : "$timer.stop",
"options" : {
"name" : "splash"
},
"success" : {
"type": "$href",
"options": {
"url": "https://raw.githubusercontent.com/jasonelle/docs/develop/examples/jasonette/apps/beerjs/index.json",
"transition": "replace"
}
}
}
}
},
"body": {
"background": "#F8DC3D",
"layers": [
{
"type": "image",
"url": "https://raw.githubusercontent.com/jasonelle/docs/develop/examples/jasonette/apps/beerjs/img/beerjs.png",
"style": {
"top": "50%-100",
"left": "50%-80",
"align": "center",
"width": "50%"
}
}
]
}
}
}