我正在做示例程序来动态调整字体大小,我需要一个带有示例程序的 jquery 来学习,所以该程序可以有一个文本,但该文本与浏览器的大小相关,当我最小化我的窗口时,文本大小应该与该浏览器大小有关。我试过这个,但没有帮助。在这里我包括了那个。
编辑:添加代码包括在评论中
<html>
<head>
<script src="ajax.googleapis.com/ajax/libs/jquery/1.10.2/…; (function($) { $.fn.resizeme = function(options) { var preferredHeight = 768; var displayHeight = $(window).height(); var percentage = displayHeight / preferredHeight; var newFontSize = Math.floor(fontsize * percentage) - 1; $("body").css("font-size", newFontSize); return this; } })(jQuery); </script> <script> $(document).ready(function(){ $("p").resizeme(function(){ }); }); </script>
</head>
<body>
<p>If you resize my window on me, I will resize.</p>
</body>
</html>