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";
}
}
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