No description available.
Properties
autoplay
boolean
Optional
Auto-advance slides
caption
string
Optional
Carousel caption
images
array
of refapp.offprint.block.imageGrid#gridImage
Required
Array of images in the carousel (2-6)
maxLength: 6 itemsminLength: 2 itemsinterval
integer
Optional
Milliseconds between slides
View raw schema
{
"type": "object",
"required": [
"images"
],
"properties": {
"images": {
"type": "array",
"items": {
"ref": "app.offprint.block.imageGrid#gridImage",
"type": "ref"
},
"required": true,
"maxLength": 6,
"minLength": 2,
"description": "Array of images in the carousel (2-6)"
},
"caption": {
"type": "string",
"description": "Carousel caption"
},
"autoplay": {
"type": "boolean",
"default": false,
"description": "Auto-advance slides"
},
"interval": {
"type": "integer",
"default": 3000,
"description": "Milliseconds between slides"
}
}
}