image
Image contains the location and size of an image to display during a step.
Key | Description | Format | Cardinality |
|---|---|---|---|
source | Location of the image to display | URL | 1 |
width | Optional image width to apply. | number (-1) | 0..1 |
height | Optional image height to apply | number (-1) | 0..1 |
fullscreen | Indicates if image should be displayed full screen or as part of page. | boolean (false) | 0..1 |
Example 39. Example
<!-- image with just a source --> <image>some-image.png</image> <!-- image with width and height specified --> <image width="640" height="480">some-image.png</image> <!-- "full-screen" image --> <image fullscreen="true">some-image.png</image>
See also