jsoneditor/examples/06_custom_styling.html

54 lines
1.2 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
2017-05-16 14:20:30 +08:00
<title>JSONEditor | Custom styling</title>
2017-05-16 14:20:30 +08:00
<link href="../dist/jsoneditor.css" rel="stylesheet" type="text/css">
<script src="../dist/jsoneditor.js"></script>
2017-05-15 12:31:20 +08:00
2017-05-16 14:20:30 +08:00
<style type="text/css">
#jsoneditor {
width: 500px;
height: 500px;
}
2017-05-16 14:20:30 +08:00
p {
width: 500px;
font-family: "DejaVu Sans", sans-serif;
}
</style>
2017-05-16 14:20:30 +08:00
<link href="./css/darktheme.css" rel="stylesheet" type="text/css">
</head>
<body>
<p>
This example demonstrates how to customize the look of JSONEditor,
the editor below has a dark theme. Note that the example isn't worked
out for the mode <code>code</code>. To do that, you can load and configure
a custom theme for the Ace editor.
</p>
<div id="jsoneditor"></div>
<script>
// create the editor
const container = document.getElementById('jsoneditor')
const options = {
modes: ['tree', 'text']
}
const json = {
'array': [1, 2, 3],
'boolean': true,
'null': null,
'number': 123,
'object': {'a': 'b', 'c': 'd'},
'string': 'Hello World'
}
const editor = new JSONEditor(container, options, json)
</script>
</body>
</html>