12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <!--
- - Copyright 2018, 2024 UltrasonicMadness
- -
- - Licensed under the Apache License, Version 2.0 (the "License");
- - you may not use this file except in compliance with the License.
- - You may obtain a copy of the License at
- -
- - http://www.apache.org/licenses/LICENSE-2.0
- -
- - Unless required by applicable law or agreed to in writing, software
- - distributed under the License is distributed on an "AS IS" BASIS,
- - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- - See the License for the specific language governing permissions and
- - limitations under the License.
- -->
- <html>
- <head>
- <title>Dream Code Demo</title>
- <meta charset="utf-8" />
- <script type="application/javascript" src="dreamcode.js"></script>
- <script type="application/javascript" src="demo.js"></script>
- <style>
- body
- {
- font-family:sans-serif;
- }
- </style>
- </head>
- <body>
- <h1>Dream Code Demo</h1>
-
- <p>Last event: <span id="event_display">(none yet)</span></p>
-
- <h3>Summary of steps (in order)</h3>
-
- <ol>
- <li>Leave the page for 18 minutes to trigger the dreamcodeGray event</li>
- <li>Leave the page for a further 18 minutes for the dreamcodeSepia event</li>
- <li>Leave the page for a further 55 minutes for the dreamcodeSilent event</li>
- <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>
- <li>Type B, shift, right arrow followed by B, right arrow, down arrow for the dreamcodeMessage event.</li>
- <li>Type A, B, up arrow for the dreamcodeMessage2 event.</li>
- <li>Leave the page for 18 minutes again for the dreamcodeFinished event.</li>
- </ol>
-
- <p>Copyright © 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>
- </body>
- </html>
|