您的位置:首页 > 其它

iframe自适应高度?

2011-02-13 10:56 176 查看
1. 下载代码jquery-auto-iframe-height或者下载



2. 使用demo

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title>jQuery » iFrame Sizing</title>
    <link rel="stylesheet" type="text/css" media="all" href="css/master.css" mce_href="css/master.css" />
    <mce:script type="text/javascript" src="js/jquery-1.4.3.min.js" mce_src="js/jquery-1.4.3.min.js"></mce:script>
    <mce:script type="text/javascript" src="js/jquery.iframe-auto-height.plugin.js" mce_src="js/jquery.iframe-auto-height.plugin.js"></mce:script>
  </head>
  <body>
    <div id="container">
        <h1>
            jQuery » iFrame Sizing
        </h1>
        <p>
            This demo uses <a href="http://jquery.com/" mce_href="http://jquery.com/">jQuery</a> to dynamically size iframes based on content height.
            Original code by Nathan Smith, see <a href="http://sonspring.com/journal/jquery-iframe-sizing" mce_href="http://sonspring.com/journal/jquery-iframe-sizing">original article</a>.
        </p>
        <p>
            Now a jquery plugin, download from github <a href="http://github.com/house9/jquery-iframe-auto-height" mce_href="http://github.com/house9/jquery-iframe-auto-height">http://github.com/house9/jquery-iframe-auto-height</a>
            and view the README file. 
        </p>
        <p>
          Best viewed locally with Firefox. 
           | 
          <a href="index2.html" mce_href="index2.html">index2</a>
           | 
          <a href="index_with_tables.html" mce_href="index_with_tables.html">index_with_tables</a>          
        </p>
        <iframe src="panoramic.html" mce_src="panoramic.html" class="photo" scrolling="no" frameborder="0"></iframe>
        <iframe src="iframe_1.html" mce_src="iframe_1.html" class="column" scrolling="no" frameborder="0"></iframe>
        <iframe src="iframe_1.html" mce_src="iframe_1.html" class="column" scrolling="no" frameborder="0"></iframe>
        <iframe src="iframe_1.html" mce_src="iframe_1.html" class="column" scrolling="no" frameborder="0"></iframe>
        <iframe src="iframe_1.html" mce_src="iframe_1.html" class="column" scrolling="no" frameborder="0"></iframe>
        <div class="clear"> </div>
        <iframe src="iframe_2.html" mce_src="iframe_2.html" class="column" scrolling="no" frameborder="0"></iframe>
        <iframe src="iframe_2.html" mce_src="iframe_2.html" class="column" scrolling="no" frameborder="0"></iframe>
        <iframe src="iframe_2.html" mce_src="iframe_2.html" class="column" scrolling="no" frameborder="0"></iframe>
        <iframe src="iframe_2.html" mce_src="iframe_2.html" class="column" scrolling="no" frameborder="0"></iframe>
        <div class="clear"> </div>
    </div>
    <!-- end #container -->
        
    <mce:script type="text/javascript"><!--
      // match all iframes / use jQuery or alias $
      jQuery('iframe').iframeAutoHeight();
  
      // only panoramic.html iframe with some extra height
      // $('iframe.photo').iframeAutoHeight({heightOffset: 50});
  
      // NOTES: you can wrap this in document ready if you like
      // but IE8 didn't always like it
    
// --></mce:script>
    
    <!-- 
    on chrome on mac get this error when viewing locally 
    Unsafe JavaScript attempt to access frame with U
    RL file:///.../jquery-iframe-auto-height/iframe_2.html 
    from frame with URL file:///.../jquery-iframe-auto-height/index.html. 
    Domains, protocols and ports must match.
    should be fine when code is served from a web server
    view with firefox locally
    -->
  </body>
</html>


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: