Lock Resizable jQuery UI只能垂直调整大小?

时间:2017-09-11 14:35:47

标签: javascript jquery html

我基本上只想将这个可调整大小的元素锁定到垂直调整大小。我知道你可以使用minWidth / maxWidth以及所有这些,但是这会将min和max设置为特定的数值,如果我调整浏览器窗口的大小,这些数字就不再准确了。关于如何锁定调整大小的想法?

以下是代码段:



  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <style>
  #resizable { width: 150px; height: 150px; padding: 0.5em; }
  #resizable h3 { text-align: center; margin: 0; }
  </style>
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#resizable" ).resizable();
  } );
  </script>
<body>
 
<div id="resizable" class="ui-widget-content">
  <h3 class="ui-widget-header">Resizable</h3>
</div>
 
 
</body>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:0)

JQueryUI Resizable有两个选项可用于执行此操作:

$( "#resizable" ).resizable({
   minWidth:150,
   maxWidth:150
});

答案 1 :(得分:0)

您可以使用handles

$( "#resizable" ).resizable({
    handles: 'n, s'
});
#resizable { width: 150px; height: 150px; padding: 0.5em; }
#resizable h3 { text-align: center; margin: 0; }
<link href="https://code.jquery.com/ui/1.12.0/themes/smoothness/jquery-ui.css" rel="stylesheet"/>
<script src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>


<div id="resizable" class="ui-widget-content">
    <h3 class="ui-widget-header">Resizable</h3>
</div>