equal
deleted
inserted
replaced
|
1 <!DOCTYPE html> |
|
2 <html lang="en"> |
|
3 <head> |
|
4 <meta charset="UTF-8" /> |
|
5 <title>jQuery UI Resizable - Maximum / minimum size</title> |
|
6 <link type="text/css" href="../../themes/base/jquery.ui.all.css" rel="stylesheet" /> |
|
7 <script type="text/javascript" src="../../jquery-1.4.2.js"></script> |
|
8 <script type="text/javascript" src="../../ui/jquery.ui.core.js"></script> |
|
9 <script type="text/javascript" src="../../ui/jquery.ui.widget.js"></script> |
|
10 <script type="text/javascript" src="../../ui/jquery.ui.mouse.js"></script> |
|
11 <script type="text/javascript" src="../../ui/jquery.ui.resizable.js"></script> |
|
12 <link type="text/css" href="../demos.css" rel="stylesheet" /> |
|
13 <style type="text/css"> |
|
14 #resizable { width: 200px; height: 150px; padding: 5px; } |
|
15 #resizable h3 { text-align: center; margin: 0; } |
|
16 </style> |
|
17 <script type="text/javascript"> |
|
18 $(function() { |
|
19 $("#resizable").resizable({ |
|
20 maxHeight: 250, |
|
21 maxWidth: 350, |
|
22 minHeight: 150, |
|
23 minWidth: 200 |
|
24 }); |
|
25 }); |
|
26 </script> |
|
27 </head> |
|
28 <body> |
|
29 <div class="demo"> |
|
30 |
|
31 <div id="resizable" class="ui-widget-content"> |
|
32 <h3 class="ui-widget-header">Resize larger / smaller</h3> |
|
33 </div> |
|
34 |
|
35 </div><!-- End demo --> |
|
36 |
|
37 <div class="demo-description"> |
|
38 |
|
39 <p>Limit the resizable element to a maximum or minimum height or width using the <code>maxHeight</code>, <code>maxWidth</code>, <code>minHeight</code>, and <code>minWidth</code> options.</p> |
|
40 |
|
41 </div><!-- End demo-description --> |
|
42 </body> |
|
43 </html> |