
var size=14;            //字体大小
function fontZoom(fontsize){    //设置字体
    size=fontsize;
    document.getElementById('ShowContent').style.fontSize=size+'px';
}
function fontMax(){    //字体放大
    size=size+2;
    document.getElementById('ShowContent').style.fontSize=size+'px';
}
function fontMin(){    //字体缩小
    size=size-2;
    if (size < 2 ){
        size = 2
    }
    document.getElementById('ShowContent').style.fontSize=size+'px';
}

