zoukankan      html  css  js  c++  java
  • iframe平铺到浏览器

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="jquery-1.9.1.min.js"></script>
    <style>
    *{
    margin: 0;padding:0
    }
    html,body{
    height:100%;
    100%;
    }
    iframe{
    background: red;
    position: fixed;
    100%;
    height:100%;
    left:0;
    top:0
    }
    </style>
    </head>
    <body>
    <iframe src="http://bsdp.cmvideo.cn/" marginheight="0" marginwidth="0" id="iframe" frameborder="0" width="100%" height="100%" ></iframe>
    <script>
    $("#iframe").attr("width",window.innerWidth+"px").attr("height",window.innerHeight+"px");
    window.onresize=function(){
    $("#iframe").attr("width",window.innerWidth+"px").attr("height",window.innerHeight+"px");
    }
    </script>
    </body>
    </html>






























    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="jquery-1.9.1.min.js"></script>
    <style>
    *{
    margin: 0;padding:0
    }
    html,body{
    height:100%;
    100%;
    }
    iframe{
    background: red;
    position: fixed;
    100%;
    height:100%;
    left:0;
    top:0
    }
    </style>
    </head>
    <body>
    <iframe src="http://bsdp.cmvideo.cn/" marginheight="0" marginwidth="0" id="iframe" frameborder="0" width="100%" height="100%" ></iframe>
    <script>
    $("#iframe").attr("width",window.innerWidth+"px").attr("height",window.innerHeight+"px");
    window.onresize=function(){
    $("#iframe").attr("width",window.innerWidth+"px").attr("height",window.innerHeight+"px");
    }
    </script>
    </body>
    </html>






































































  • 相关阅读:
    iOS6后的内存警告处理
    key things of ARC
    敏捷软件开发Note
    ViewController的属性
    sizeToFit & sizeThatFits
    iOS静态库的制作与引用
    xcode添加build phase
    什么是HUD
    xcode中的预定义宏
    管理授权&管理决策&管理组织&管理目标
  • 原文地址:https://www.cnblogs.com/liuhao-web/p/8695693.html
Copyright © 2011-2022 走看看