demo.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <!--
  3. - Copyright 2018, 2024 UltrasonicMadness
  4. -
  5. - Licensed under the Apache License, Version 2.0 (the "License");
  6. - you may not use this file except in compliance with the License.
  7. - You may obtain a copy of the License at
  8. -
  9. - http://www.apache.org/licenses/LICENSE-2.0
  10. -
  11. - Unless required by applicable law or agreed to in writing, software
  12. - distributed under the License is distributed on an "AS IS" BASIS,
  13. - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. - See the License for the specific language governing permissions and
  15. - limitations under the License.
  16. -->
  17. <html>
  18. <head>
  19. <title>Dream Code Demo</title>
  20. <meta charset="utf-8" />
  21. <script type="application/javascript" src="dreamcode.js"></script>
  22. <script type="application/javascript" src="demo.js"></script>
  23. <style>
  24. body
  25. {
  26. font-family:sans-serif;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <h1>Dream Code Demo</h1>
  32. <p>Last event: <span id="event_display">(none yet)</span></p>
  33. <h3>Summary of steps (in order)</h3>
  34. <ol>
  35. <li>Leave the page for 18 minutes to trigger the dreamcodeGray event</li>
  36. <li>Leave the page for a further 18 minutes for the dreamcodeSepia event</li>
  37. <li>Leave the page for a further 55 minutes for the dreamcodeSilent event</li>
  38. <li>Type A, B, return, shift, left arrow in any order, followed by A, B, right arrow also in any order for the dreamcodeMusic event.</li>
  39. <li>Type B, shift, right arrow followed by B, right arrow, down arrow for the dreamcodeMessage event.</li>
  40. <li>Type A, B, up arrow for the dreamcodeMessage2 event.</li>
  41. <li>Leave the page for 18 minutes again for the dreamcodeFinished event.</li>
  42. </ol>
  43. <p>Copyright &copy; 2018, 2024 <a target="_blank" href="https://www.ultrasonicmadness.org/">UltrasonicMadness</a>, this software is available under the <a target="_blank" href="https://www.apache.org/licenses/LICENSE-2.0.html">Apache License 2.0</a>.</p>
  44. </body>
  45. </html>