story3.html 535 B

123456789101112131415161718192021
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Story using promises, version 3</title>
  6. <script src="story3.js"></script>
  7. <link rel="stylesheet" href="styles.css">
  8. </head>
  9. <body>
  10. <div class="network-fake">
  11. <label><input type="checkbox"> Fake network delay</label>
  12. </div>
  13. <div class="story"></div>
  14. <svg class="spinner" viewBox="0 0 100 100" width="20" height="20">
  15. <circle cx="50" cy="50" r="42" transform="rotate(-90,50,50)" />
  16. </svg>
  17. <script>
  18. rtl.run();
  19. </script>
  20. </body>
  21. </html>