有时需要设置下面的情况,即 <div> 的高度和宽度是相等的、并且随着屏幕的大小变化而变化。这样就需要用 js 来控制元素在页面上的显示。
<html>
<body>
<div class="row text-center margin-top-20p">
<div class="col bgcolor-FF9600 border-radius-5p margin-2p height-width">
<p class="white">你是</p>
<p class="white" ng-bind="userLever.name"></p>
</div>
<div class="col bgcolor-FECA14 border-radius-5p margin-2p height-width" ng-if="userLever.discount != 10">
<p class="white">享受</p>
<p class="white">{{userLever.discount}}折</p>
</div>
<div class="col bgcolor-FECA14 border-radius-5p margin-2p height-width" ng-if="userLever.discount == 10">
<p class="margin-top-20p white">不享受</p>
<p class="white">折扣</p>
</div>
<div class="col bgcolor-A5D600 border-radius-5p margin-2p height-width">
<p class="white">加入时间</p>
<p class="white" ng-bind="addTime"></p>
</div>
</div>
<body>
</html>
<script type="text/javascript">
//设置元素的高度
var height = $(".height-width").width();
$(".height-width").css("height",height );
$(".height-width-child").css("height",height );
$(".height-width p:first-child").css("margin-top",Math.ceil(height/4)+"px");
$(".height-width-child p").css("line-height",height+"px");
</script>