quizshow-part-slideshow
v0.1.0
Published
This part simply displays an image slideshow.
Downloads
3
Readme
#Slideshow Part for quizshow
This part simply displays an image slideshow.
##Data format
{
"type": "slideshow",
"images": [
{
"src": "https://example.com/picture-1.png",
"duration": "5", # how long should the picture be visible. use 0 if you don't want a slide to advance automatically
"date": "2013", # year of the picture, will be used in the backround
"caption": "Picture 1" # caption of the picture
},
{
"src": "https://example.com/picture-2.png",
"duration": "5",
"date": "2013",
"caption": "Picture 2"
}
],
"audio": {
"background": "background" # optional
},
"theme": "polaroid", # valid themes are plain, burns, polaroid, defaults to plain
"transition": "slide", # valid transitions are: fade, slide, zoom and none, defaults to none
"title": "My Slideshow"
}