crowds/js/chapters/B_Introduction.js

49 lines
603 B
JavaScript
Raw Normal View History

2018-03-26 15:52:43 +00:00
SLIDES.push(
2018-04-10 17:00:22 +00:00
2018-03-26 15:52:43 +00:00
{
2018-04-04 15:57:35 +00:00
chapter: "Introduction",
2018-04-16 15:44:14 +00:00
remove:[
{type:"box", id:"title"},
{type:"box", id:"button"}
],
2018-04-10 17:00:22 +00:00
add:[
// Splash
{
2018-04-16 15:44:14 +00:00
ONLY_IF_IT_DOESNT_ALREADY_EXIST: true,
2018-04-10 17:00:22 +00:00
type:"sim",
x:960/2, y:540/2,
fullscreen: true,
2018-04-13 20:58:04 +00:00
network: SPLASH_NETWORK,
2018-04-10 17:00:22 +00:00
options:{
splash: true,
randomStart: 20
}
2018-04-11 20:44:12 +00:00
},
// Words
{
type:"box",
2018-04-16 15:44:14 +00:00
id:"intro",
2018-04-24 14:22:06 +00:00
text:"intro", x:180, y:0, w:600, h:540, align:"center"
2018-04-11 20:44:12 +00:00
},
2018-04-10 17:00:22 +00:00
]
2018-04-11 20:44:12 +00:00
},
{
remove:[
2018-04-16 15:44:14 +00:00
{ type:"box", id:"intro" }
2018-04-11 20:44:12 +00:00
],
add:[
{
type:"box",
2018-04-16 15:44:14 +00:00
id:"intro_2",
2018-04-24 14:22:06 +00:00
text:"intro_2", x:180, y:0, w:600, h:540, align:"center"
2018-04-11 20:44:12 +00:00
}
]
2018-03-26 15:52:43 +00:00
}
2018-04-10 17:00:22 +00:00
2018-03-26 15:52:43 +00:00
);