全高iframe

时间:2018-02-22 19:45:11

标签: php jquery html

在wordpress中我使用了一个创建这个iframe的插件:

EC2_INSTANCE_ID=`wget -q -O - http://169.254.169.254/latest/meta-data/instance-id`

这是php页面的数组:

<iframe scrolling="no" allowfullscreen="" src="http://...k.jpg&amp;is_stereo=false" width="100%" height="1200px"></iframe>

这是php代码:

    $a = shortcode_atts( array(
   'img' => '',
   'video' => '',
   'pimg' => '',
   'stereo' => 'false',
   'width' => '100%',
   'height' => '1200px',
   ), $atts );

宽度完美且反应灵敏。

我需要一个全高度的iframe。怎么样?

1 个答案:

答案 0 :(得分:0)

您可以尝试查看是否有效:

<div style="height: 100%; width: 100%;">
    <iframe width="<?php echo $a['width']; ?>" height="<?php echo $a['height']; ?>" scrolling="no" style="height:100%;width:100%" allowfullscreen="1" src="<?php echo $iframe_url; ?>"></iframe>
</div>

输出应该

<div style="height: 100%; width: 100%;">
    <iframe scrolling="no" allowfullscreen="1" src="http://...k.jpg&amp;is_stereo=false" style="height:100%;width:100%"  width="100%" height="1200px"></iframe></div>