別のdiv内にace divがあり、aceエディターでその幅と高さを親divに調整したいと思います。 editor.resize()を呼び出しましたが、何も起こりません。
<!DOCTYPE html>
<html lang="en" style="height: 100%">
<head>
<title>ACE in Action</title>
<style type="text/css" media="screen">
#editor {
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100px;
}
</style>
</head>
<body style="height: 100%">
<div style="background-color: red; height: 100%; width: 100%;">
<div id="editor">function foo(items) {
var x = "All this is syntax highlighted";
return x;
}</div>
</div>
<script src="ace-builds/src-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
<script>
var editor = ace.edit("editor");
editor.setTheme("ace/theme/monokai");
editor.getSession().setMode("ace/mode/javascript");
editor.resize();
</script>
</body>
</html>
あなたは2つの方法であなたが望むものを達成することができます。私は jsfiddle を作成し、ace-editorをそのコンテナーにサイズ変更するために使用されるCSSとJavaScriptを示しています。
使用されるcssは、エディターがコンテナーの幅と高さを占めるようにするためのもので、editor.resize()
はエディターのサイズを適切に計算できます。
editor.resize()
を動作させるには、以下をお勧めします。
<style type="text/css" media="screen">
#editor {
width: 100%;
height: 100%;
}
</style>
ただし、#editor
で使用している現在のCSSを引き続き使用する場合は、次のように機能します。
<style type="text/css" media="screen">
#editor {
position: absolute; /* Added */
top: 0;
right: 0;
bottom: 0;
left: 0;
}
</style>
コンテナにposition: relative;
を追加して、絶対配置エディタがコンテナ内に正しく配置されるようにします。これがどのように機能するかについて、私はあなたに言及します 相対配置内の絶対配置
以下の方法で実現できます。たとえば、コードスニペットを実行します。
var editor = ace.edit("editor");
editor.setTheme("ace/theme/tomorrow_night");
editor.session.setMode("ace/mode/xml");
editor.session.setUseSoftTabs(true);
#parent {
width:50%;
height: 600px;
display:inline-block;
position:relative;
}
#editor {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.3.3/ace.js"></script>
<html>
<body>
<div id="parent">
<div id="editor"></div>
</div>
</body>
</html>
jquery-ace を使用するこれは、次のように使用するだけで管理できます。
$('#php_code').ace({
theme: 'chrome',
lang: 'php',
width: '100%',
height: '300px'
})
私はそれを単純なCSSで動作させました:
#container{
height:80vh;
}
#editor {
width: 100%;
height: 100%;
position: relative;
}
重要なプロパティはposition:relative
、デフォルトを上書きposition:absolute
のaceエディター。コンテンツを調整できない親コンテナーを生成します。
<div id="container">
<pre id="editor">
<div>
		this is a div
	</div>
</pre>
</div>
<script>
$(document).ready(function() {
var editor = ace.edit("editor");
editor.setTheme("ace/theme/TextMate");
editor.session.setMode("ace/mode/html");
});
</script>
設定をブラウザーのデフォルトにリセットします。これは、設計上、親コンテナーに適合します。
#editor {
width: inherit !important;
}
私はreactjsのreact-aceラッパーを使用しています。これは、いくつかのデフォルトが上書きされているaceラッパーに有益です。