40 |
aurelien |
1 |
<!DOCTYPE html>
|
|
|
2 |
<html lang="en">
|
|
|
3 |
<head>
|
|
|
4 |
<meta charset="UTF-8" />
|
|
|
5 |
<title>jQuery UI Resizable - Constrain resize area</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 |
#container { width: 300px; height: 300px; }
|
|
|
15 |
#container h3 { text-align: center; margin: 0; margin-bottom: 10px; }
|
|
|
16 |
#resizable { background-position: top left; width: 150px; height: 150px; }
|
|
|
17 |
#resizable, #container { padding: 0.5em; }
|
|
|
18 |
</style>
|
|
|
19 |
<script type="text/javascript">
|
|
|
20 |
$(function() {
|
|
|
21 |
$("#resizable").resizable({
|
|
|
22 |
containment: '#container'
|
|
|
23 |
});
|
|
|
24 |
});
|
|
|
25 |
</script>
|
|
|
26 |
</head>
|
|
|
27 |
<body>
|
|
|
28 |
<div class="demo">
|
|
|
29 |
|
|
|
30 |
<div id="container" class="ui-widget-content">
|
|
|
31 |
<h3 class="ui-widget-header">Containment</h3>
|
|
|
32 |
<div id="resizable" class="ui-state-active">
|
|
|
33 |
<h3 class="ui-widget-header">Resizable</h3>
|
|
|
34 |
</div>
|
|
|
35 |
</div>
|
|
|
36 |
|
|
|
37 |
</div><!-- End demo -->
|
|
|
38 |
|
|
|
39 |
<div class="demo-description">
|
|
|
40 |
|
|
|
41 |
<p>Define the boundaries of the resizable area. Use the <code>containment</code> option to specify a parent DOM element or a jQuery selector, like 'document.'</p>
|
|
|
42 |
|
|
|
43 |
</div><!-- End demo-description -->
|
|
|
44 |
</body>
|
|
|
45 |
</html>
|