change(font) 修改使用websocket的页面字体,增加监控size

增加 "Microsoft Yahei"
pull/166/head
ibuler 2016-03-26 11:39:49 +08:00
parent 3dfd9cd512
commit 1e1aa67b3e
2 changed files with 6 additions and 6 deletions

View File

@ -82,7 +82,7 @@
<style type="text/css"> <style type="text/css">
* { * {
font-family: "Monaco", "DejaVu Sans Mono", "Liberation Mono", monospace; font-family: "Monaco", "Microsoft Yahei", "DejaVu Sans Mono", "Liberation Mono", monospace;
font-size: 11px; font-size: 11px;
} }

View File

@ -3,7 +3,7 @@
<style> <style>
.terminal { .terminal {
border: #000 solid 5px; border: #000 solid 5px;
font-family: "Monaco", "DejaVu Sans Mono", "Liberation Mono", monospace; font-family: "Monaco", "Microsoft Yahei", "DejaVu Sans Mono", "Liberation Mono", monospace;
font-size: 11px; font-size: 11px;
color: #f0f0f0; color: #f0f0f0;
background: rgba(0, 0, 0, 0.6); background: rgba(0, 0, 0, 0.6);
@ -141,8 +141,8 @@
var socket = new WebSocket(endpoint + '?file_path=' + file_path); var socket = new WebSocket(endpoint + '?file_path=' + file_path);
var term = new Terminal({ var term = new Terminal({
cols: 80, cols: 98,
rows: 24, rows: 28,
screenKeys: false, screenKeys: false,
handler: function(){return false} handler: function(){return false}
}); });
@ -150,7 +150,7 @@
var tag = $('<div id="term" style="height:500px; overflow: auto;background-color: rgba(0, 0, 0, 0);border: none"></div>'); var tag = $('<div id="term" style="height:500px; overflow: auto;background-color: rgba(0, 0, 0, 0);border: none"></div>');
term.open(); term.open();
$('.terminal').hide(); $('.terminal').hide();
term.resize(80, 24); term.resize(98, 28);
socket.onopen = function(evt){ socket.onopen = function(evt){
socket.send('hello'); socket.send('hello');
@ -170,7 +170,7 @@
$('.terminal').detach().appendTo('#term'); $('.terminal').detach().appendTo('#term');
$('.terminal').show(); $('.terminal').show();
socket.onmessage = function(evt){ socket.onmessage = function(evt){
term.write(evt.data); term.write(evt.data);
}}, 1000); }}, 1000);
return tag[0]; return tag[0];