| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
9年前发布

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

有时需要设置下面的情况,即 <div> 的高度和宽度是相等的、并且随着屏幕的大小变化而变化。这样就需要用 js 来控制元素在页面上的显示。

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

<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>

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1436603807864.html
jQuery Ajax框架