与jQuery UI调整大小的iFrame(Resizing iFrame with jQuery

2019-06-28 02:03发布

我有这样的代码,并能正常工作:

    <script>
    $(document).ready(function()
    {
        $("#test").resizable({minHeight: 50, minWidth: 50});
    });
</script>

身体

<div id="test" style="border: .1em solid black;">
</div>

然而,当我改变我的“格”到“IFRAME”我不能再调整它的大小。

身体

<iframe id="test" style="border: .1em solid black;">
</iframe>

Answer 1:

移动鼠标比在同一时间几个像素更多的时候发现redsquare的演示有点靠不住。 我申请了几个改进,帮助人们调整顺畅了很多:

<html>
<head>
  <style type="text/css"> 
    #resizable { width: 150px; height: 150px; padding: 0.5em; }
    #resizable h3 { text-align: center; margin: 0; }
    .ui-resizable-helper { border: 75px solid #EFEFEF; margin: -75px; }
  </style> 
  <script type="text/javascript"> 
    $(function() {
      $("#resizable").resizable({
        helper: "ui-resizable-helper"
      });
    });
  </script> 
</head> 
<body> 
  <div class="demo"> 
    <div id="resizable" class="ui-widget-content"> 
      <iframe src="http://pastebin.me/f9ed9b9d36d17a7987e9cb670e01f0e2" class="ui-widget-content" frameborder="no" id="test" width="100%" height="100%" />
    </div> 
  <div>
</body>
</html>

调整大小的古怪,似乎发生,因为mousemove事件时从iframe中没有泡沫了。 使用调整大小处理,并在处理CSS大边框最小化,只要浏览器能跟上鼠标移动事件由IFRAME造成的影响。



Answer 2:

下面的代码在光滑的方式为我工作。

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>jQuery UI Resizable - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>

  <style>

  #iframe {
  width: 100%;
  height: 100%;
  border: none;    

  background: #eee ;


  z-index: 1;
}

#resizable {
  width: 100px;
  height: 100px;
  background: #fff;
  border: 1px solid #ccc;


  z-index: 9;
}
  </style>
  <script>
  $(function() {
    $('#resizable').resizable({
      start: function(event, ui) {
        $('iframe').css('pointer-events','none');
         },
    stop: function(event, ui) {
        $('iframe').css('pointer-events','auto');
      }
  });
  });
  </script>
</head>
<body>

<div id="resizable">
  <iframe src="test.html" id="iframe">

</div>


</body>
</html>


Answer 3:

我想这可能是你在找什么:地方无论是在在一个div您的iframe的内容。 在这个例子中我会给格“容器”的ID。

$('#ID_iframe').css("height", "" + $('#ID_iframe').contents().find("#container").height() + "px");


Answer 4:

我登陆了这里Searchin的Resize iframe ,但这个问题是关于使用jQuery UI插件,我只是增加一个答案,所以可能是有人在将来谁属于这一页搜索以调整iframe的有益调整。 这可以通过使用CSS只完成

iframe {
  height: 300px;
  width: 300px;
  resize: both;
  overflow: auto;
}

此外所有的主流浏览器有很好的支持。 看看这个链接也对浏览器的支持



文章来源: Resizing iFrame with jQuery UI