文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>[Javascript] How to enlarge and small the font

[Javascript] How to enlarge and small the font

时间:2010-08-17  来源:DavidHHuan

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>

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载