html code:

代码
<a href="####" id="zoom_minify">Zoom In</a>
<a href="####" id="zoom_magnify">Zoom Out</a>

 

js code:

代码
<script type="text/javascript">
$(
'#zoom_minify').click(function(){
textZoom(
-1);
});
$(
'#zoom_magnify').click(function(){
textZoom(
1);
});
function textZoom(i){
var newSize = Number($('body').css('font-size').substring(0, $('body').css('font-size').length-2)) + i;
$(
'body').css('font-size', newSize);
}
</script>

 

相关文章:

  • 2021-05-29
  • 2019-10-04
  • 2021-11-05
  • 2021-10-19
  • 2021-05-28
  • 2021-09-11
  • 2021-09-05
  • 2021-08-09
猜你喜欢
  • 2021-12-19
  • 2021-06-14
  • 2018-11-22
  • 2021-07-30
  • 2021-12-06
  • 2021-11-22
  • 2021-12-28
  • 2021-07-18
相关资源
相似解决方案