📄 tree.js
字号:
function nodeHide(id) {
$('#'+id+'-co').hide();
$('#'+id+'-fo').hide();
$('#'+id+'-cc').show();
$('#'+id+'-fc').show();
$('#'+id+'-').hide(60);
}
function nodeShow(id) {
$('#'+id+'-cc').hide();
$('#'+id+'-fc').hide();
$('#'+id+'-co').show();
$('#'+id+'-fo').show();
$('#'+id+'-').show(60);
}
function lineOver(id) {
$('#'+id).addClass("hover");
}
function lineOut(id) {
$('#'+id).removeClass("hover");
}
function lineSelected(id) {
if(t_selected_id){
$('#'+t_selected_id).removeClass("selected");
}
t_selected_id=id;
$('#'+id).addClass("selected");
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -