-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.html
44 lines (38 loc) · 998 Bytes
/
site.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cantonese IDE</title>
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>
<style>
body {
background-color: #333;
padding: 50px;
}
#code,
#preview {
float: left;
width: 500px;
height: 500px;
background-color: #fff;
}
#code {
background-color: #ddd;
}
</style>
</head>
<body>
<textarea id="code"></textarea>
<div id="preview"></div>
<script>
showResult();
$("#code").keydown(function() {
showResult();
});
function showResult() {
var aa = $("#code").val();
$("#preview").html(aa);
}
</script>
</body>
</html>