HTML+JS将div的高和宽按比例复制给另一个DIV

Posted ZM姐姐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML+JS将div的高和宽按比例复制给另一个DIV相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="zh-cn">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
#dom2{
    width:450px;
    height: 450px;
    background-color: black;
}
#as{
    background-color: red;
}
    </style>
</head>
<body>
    <div id="dom2"></div>
    <div id="as"></div>

    <script>
    var width=document.getElementById(dom2).offsetWidth;
    var height=document.getElementById(dom2).offsetHeight;
    var nh=height*16/9;
    document.getElementById(as).style.width=width+"px";
    document.getElementById(as).style.height=nh+"px";
    </script>
</body>
</html>

 

以上是关于HTML+JS将div的高和宽按比例复制给另一个DIV的主要内容,如果未能解决你的问题,请参考以下文章

Echarts高和宽自适应问题

js如何获取图片的高和宽?根据我的部分代码添加完善,谢谢!

关于ASP.NET listview的问题 ASP.NET DIV中放入 listview控件 设计视图布局全乱了

c#获取图片的高和宽

android中的动画可以改变一个view的高和宽吗

怎么设置text的高和宽?在线等