如何在窗口调整大小时调整框或字体大小?但是缩放比例却不超过css中设置的默认值,例如,在css中你可能width:800px; height:600px;
对box进行了设置。
当您缩放浏览器时,我想存档与本网站类似的结果,图像、框、字体大小也在缩放 - http://davegamache.com/craftsmanship/
我测试了我的脚本,但似乎离它很远,
html,
<div class="box">
<p>I am in a box.</p>
</div>
的CSS,
<style>
.box {
width:800px;
height:600px;
border:1px solid #000;
}
</style>
jQuery,
$(document).ready(function(){
var window_height = $(window).height();
$(window).resize(function() {
//$('.box').css({'height':(window_height/2)+'px'});
$(".box").animate({
width: (window_height/2) +'px'
}, 500 );
});
});
我尝试使用这个插件,但根本无法让它工作 - http://fittextjs.com/
有任何想法吗?