网站文字变大和变小
在我的网站上,我想要按钮,一个用于使文本大小变大,一个用于使其变小!
有谁知道该怎么做。
谢谢
On my website, i want to have to buttons, one to make the text size on larger, and one to make it one smaller!
Does anyone know how to do this.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意,您无法使用纯 HTML 执行您想要的操作。为此你需要 JavaScript。
这篇博文准确地解释了您想要的内容:
所以在你有两个按钮的情况下,你需要类似的东西:
Note, that you can't do what you want with plain HTML. You need JavaScript for that.
This blog post explains exactly what you want:
So in your case with two buttons you would need something like:
现代浏览器内置了此功能。您可以缩放/增加文本大小,这适用于所有页面。此外,与任何自定义控件相比,用户更熟悉以这种方式调整文本大小。
Modern browsers have this functionality built in. You can zoom / increase text size and this works for all the pages. Also the users are more familiar resizing the text this way than any custom controls.