mouse-fixed.html 646 B

1234567891011121314151617181920212223242526272829303132
  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="../../metadata.js"></script>
  20. <script src="dev-setup.js"></script>
  21. <script>
  22. loadEditor(function () {
  23. monaco.editor.create(document.getElementById('Editor'), {
  24. value: document.documentElement.innerHTML,
  25. language: 'xml'
  26. });
  27. });
  28. </script>
  29. </body>
  30. </html>