我正在尝试让 JavaScript 代码编辑器ACE在移动设备上工作。
var editor = ace.edit("editor");
editor.setTheme("ace/theme/twilight");
editor.getSession().setMode("ace/mode/css");
你可以在这里找到完整的代码
垂直滚动似乎对任何移动设备都没有响应,而且滞后很多。我怎样才能使它更具响应性?
据我所知,codemirror 多年来一直没有出现任何性能问题,因此请尝试使用它。这是您的 jsfiddle,但使用 codemirror:https ://jsfiddle.net/DerpMarine/j54gfecL/16/
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.39.2/codemirror.js"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.39.2/codemirror.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.39.2/mode/css/css.js"></script>
</body>
<script>
var myCodeMirror = CodeMirror(function(elt) {
document.getElementById('editor').parentNode.replaceChild(elt, document.getElementById('editor'));
},{
mode: "css",
theme: "custom", // https://codemirror.net/doc/manual.html#option_theme and https://codemirror.net/theme/
value: document.getElementById('editor').value
});
</script>