-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource.js
executable file
·42 lines (41 loc) · 915 Bytes
/
source.js
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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var STORYLINE = {
Intro : {
text : 'Track 000<br />They Tell a Tale',
next : 'SecIntro',
duration : 6000,
},
SecIntro : {
text : 'We hurt because we loved. Don\'t you forget...',
next : 'Start',
duration : 4500,
},
Start : {
source : 'videos/Start.mp4',
next : 'Q',
},
Q : {
text : 'Are you able to sustain?',
next : {
Yes : 'QY',
No : 'QN',
},
duration : 3000,
},
QY : {
source : 'videos/QY.mp4',
next : 'EndY',
},
QN : {
source : 'videos/QN.mp4',
next : 'EndN',
},
EndY : {
text : 'Your jorney will be continued on 12/2.',
},
EndN : {
text : 'The path will be revealed again on 12/2.',
}
};