Tuesday, June 14, 2011

Customize font size at run time

    function inc(){
        if (document.body.style.fontSize == "") {
            document.body.style.fontSize = "1.5em";
        }else{
            document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (.5 * 0.2) + "em";
        }   
    }
   
    function dec(){
        if (document.body.style.fontSize != "") {
            document.body.style.fontSize = parseFloat(document.body.style.fontSize) - (.5 * 0.2) + "em";
        }   
       
    }

No comments:

Post a Comment