按钮点击增加/减小字体大小

问题描述:

我相信你们肯定看到过某些网站上的字体大小调整选项,他们在小,中,大尺寸上显示字母A,点击它可以改变网站的字体大小。我有两个问题:

I am sure you guys must have seen that font resizing option on some website where they display alphabet "A" in small, medium and large sizes clicking on which changes the font size of website. I have two questions:


  1. 实际上叫做什么?就像是否有一个术语来描述它一样?

  2. 我可以在网站上使用这些参数吗?其中一位客户要求将其整合到网站中,而我并没有看到使用它的任何实际好处,因此我可以给客户什么参数以免使用它?



  1. 它被称为字体大小更改选项或字体大小调整器。
    这里有一个简单而最少的5行代码jQuery教程: http://www.programming-free.com/2013/12/increase-decrease-font-size-jquery.html

  1. It is called "font size change options", or "font resizer". Here is a simple and minimal 5 lines of code jQuery tutorial: http://www.programming-free.com/2013/12/increase-decrease-font-size-jquery.html

一些放大字号的代码:

A bit of the code that enlarges the font size:

newFontSize= parseInt($('#content').css('font-size')) + 2;
$('#content').css('font-size', newFontSize);




  1. 用户可以在浏览器中使用CTRL +。问题是最终用户不知道这个技巧。
    这是一个快速而简单的实现,不需要说服客户反对它。编程10小时后,我发现自己很难看清楚小文本。也许客户有视力问题,需要解决像他这样的其他人。