Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. {
  2. "type": "Pager",
  3. "id": "pagerComponentId",
  4. "width": "100vw",
  5. "height": "100vh",
  6. "navigation": "none",
  7. "data": "${content.slideShowContent}",
  8. "speech": "${content.textContent.slideShowSpeech}",
  9. "items": [
  10. {
  11. "type": "Container",
  12. "height": "100vh",
  13. "items": [
  14. {
  15. "type": "Image",
  16. "source": "${data.path}${@backgroundImage}",
  17. "scale": "best-fill",
  18. "width": "100vw",
  19. "height": "100vh",
  20. "position": "absolute"
  21. },
  22. {
  23. "type": "AlexaHeader",
  24. "headerAttributionImage": "${content.imageContent.logoIcon}"
  25. },
  26. {
  27. "type": "Container",
  28. "justifyContent": "${viewport.shape == 'round' ? 'center' : 'end'}",
  29. "grow": "${viewport.shape == 'round' ? 0 : 1}",
  30. "items": [
  31. {
  32. "type": "Text",
  33. "id": "slideId",
  34. "style": "${viewport.shape == 'round' ? 'textStylePrimary' : 'textStyleTitle'}",
  35. "paddingLeft": "@marginLeft",
  36. "paddingRight": "@marginRight",
  37. "paddingBottom": "@marginBottom",
  38. "textAlign": "${viewport.shape == 'round' ? 'center' : 'left'}",
  39. "text": "${data.imageTitle}"
  40. }
  41. ]
  42. },
  43. {
  44. "type": "AlexaFooter",
  45. "footerHint": "${data.hintText}"
  46. }
  47. ]
  48. }
  49. ]
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement