GeorgeWang地字3号

JQuery、Node.js http://www.pecloud.cn/

导航

jquery font resizing

$(document).ready(function() {

  // Reset the font size(back to default)

  var originalFontSize = $('html').css('font-size');

  $(".resetFont").click(function() {

    $('html').css('font-size', originalFontSize);

  });

  // Increase the font size(bigger font0

  $(".increaseFont").click(function() {

    var currentFontSize = $('html').css('font-size');

    var currentFontSizeNum = parseFloat(currentFontSize, 10);

    var newFontSize = currentFontSizeNum * 1.2;

    $('html').css('font-size', newFontSize);

    return false;

  });

  // Decrease the font size(smaller font)

  $(".decreaseFont").click(function() {

    var currentFontSize = $('html').css('font-size');

    var currentFontSizeNum = parseFloat(currentFontSize, 10);

    var newFontSize = currentFontSizeNum*0.8;

    $('html').css('font-size', newFontSize);

    return false;

  });

});

posted on 2011-02-20 14:08  GeorgeWang  阅读(170)  评论(0编辑  收藏  举报