码迷,mamicode.com
首页 > Web开发 > 详细

JQuery 设置元素的高度和宽度相等

时间:2015-07-11 12:20:42      阅读:1168      评论:0      收藏:0      [点我收藏+]

标签:

有时需要设置下面的情况,即 <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>


JQuery 设置元素的高度和宽度相等

标签:

原文地址:http://my.oschina.net/jack088/blog/477242

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!