lottie.rml 462 B

123456789101112131415161718192021222324252627282930313233
  1. <rml>
  2. <head>
  3. <title>Demo</title>
  4. <link type="text/template" href="/assets/window.rml" />
  5. <style>
  6. body
  7. {
  8. width: 300dp;
  9. height: 225dp;
  10. margin: auto;
  11. }
  12. div#title_bar div#icon
  13. {
  14. display: none;
  15. }
  16. div#content
  17. {
  18. text-align: left;
  19. }
  20. lottie {
  21. display: block;
  22. width: 100%;
  23. max-height: 100%;
  24. }
  25. </style>
  26. </head>
  27. <body template="window">
  28. <lottie src="a_mountain.json"></lottie>
  29. </body>
  30. </rml>