?? tree.js
字號(hào):
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");
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -