我一直想知道如何让网页上的网页更流畅,100%响应。所以我决定将以下几点jQuery pixie dust添加到我网站的代码中。
$(window).resize(function(){
$("div.content").css({
minHeight : $(window).height() * 0.75
});
});
// just to make sure it happens
$(function(){
$(window).trigger("resize");
});
这是个好主意吗?这里需要一些HTML5大师。