有個項目移動端的首頁需要自適應。
寬度已經自適應了 , 高度也要自適應 ,先總結一下方法,PC端也適用。
$(function(){
var h = window.innerHeight;
$(".carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img").css("height",h*0.32);
$(".database-con .col-xs-6 a").css("height",h*0.16);
$(".search-bg").css("height",h*0.12);
$(".home-footer").css("height",h*0.08);
});
把上面代碼貼出來,供大家使用。