mouse-fixed.html 602 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  5. </head>
  6. <body style="height: 2000px">
  7. <h2>Monaco Editor in fixed element</h2>
  8. <div
  9. style="
  10. position: fixed;
  11. left: 20%;
  12. top: 20%;
  13. right: 20%;
  14. height: 400px;
  15. border: 1px solid silver;
  16. "
  17. id="Editor"
  18. ></div>
  19. <script src="dev-setup.js"></script>
  20. <script>
  21. loadEditor(function () {
  22. monaco.editor.create(document.getElementById('Editor'), {
  23. value: document.documentElement.innerHTML,
  24. language: 'xml'
  25. });
  26. });
  27. </script>
  28. </body>
  29. </html>