a.html 829 B

12345678910111213141516171819202122232425262728293031
  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="manifest" crossorigin="use-credentials" href="manifest.json">
  9. <title>On Screen Keyboard</title>
  10. <style>
  11. body{
  12. background-color: rgba(255,255,255,1.0);
  13. overflow: hidden;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <script src="../script/jquery.min.js"></script>
  19. <script src="../script/ao_module.js"></script>
  20. <script src="onscreenkeyboard.js"></script>
  21. <script>
  22. //Initialize ao_module events
  23. ao_module_setFixedWindowSize();
  24. //Pin the window to top layer
  25. ao_module_setTopMost();
  26. </script>
  27. </body>
  28. </html>