trust/js/slides/8_Slides_Conclusion.js

57 lines
969 B
JavaScript
Raw Normal View History

2017-07-12 21:24:26 +00:00
SLIDES.push({
id: "conclusion",
2017-07-20 18:45:11 +00:00
onstart: function(self){
},
onend: function(self){
self.clear();
}
});
SLIDES.push({
2017-07-12 21:24:26 +00:00
onstart: function(self){
// Splash in background
self.add({ id:"splash", type:"Splash" });
// Circular Wordbox
self.add({
id:"text", type:"TextBox",
x:160, y:10, width:640, height:500, align:"center", size:19,
text_id:"conclusion"
});
// Button
self.add({
id:"button", type:"Button", x:385, y:466,
text_id:"conclusion_button", fontSize:16, upperCase:false,
message:"slideshow/scratch"
});
2017-07-20 18:45:11 +00:00
},
onend: function(self){
self.remove("button");
}
});
SLIDES.push({
onstart: function(self){
var o = self.objects;
// Text
o.text.setTextID("conclusion_2");
// Button
self.add({
id:"button", type:"Button", x:385, y:466,
text_id:"conclusion_button", fontSize:16, upperCase:false,
message:"slideshow/scratch"
});
// Fade In & Out
2017-07-12 21:24:26 +00:00
},
onend: function(self){
self.clear();
}
});