index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="apple-mobile-web-app-capable" content="yes" />
  6. <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"/>
  7. <meta name="theme-color" content="#4b75ff">
  8. <link rel="stylesheet" href="../script/semantic/semantic.min.css">
  9. <link rel="stylesheet" href="css/style.css">
  10. <link rel="manifest" crossorigin="use-credentials" href="manifest.json">
  11. <title>On Screen Keyboard</title>
  12. <style>
  13. body{
  14. background-color: rgba(255,255,255,1.0);
  15. overflow: hidden;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <script src="../script/jquery.min.js"></script>
  21. <script src="../script/ao_module.js"></script>
  22. <textarea class="use-keyboard-input"></textarea>
  23. <script src="js/keyboard.js"></script>
  24. <script src="onscreenkeyboard.js"></script>
  25. <script>
  26. //Initialize ao_module events
  27. ao_module_setFixedWindowSize();
  28. ao_module_setWindowTitle("On-Screen Keyboard");
  29. //Pin the window to top layer
  30. ao_module_setTopMost();
  31. </script>
  32. </body>
  33. </html>