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

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

时间:2017-03-17 18:58:27      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:oct   nbsp   off   logs   type   ack   class   fse   htm   

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

标签:oct   nbsp   off   logs   type   ack   class   fse   htm   

原文地址:http://www.cnblogs.com/zmsister/p/6567769.html

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