source: ether_statistics/web/resources/js/library/jquery-ui-1.9.0.custom/development-bundle/demos/resizable/constrain-area.html @ 603

Last change on this file since 603 was 603, checked in by vmipsl, 12 years ago

images

File size: 1.3 KB
Line 
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 rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
7        <script src="../../jquery-1.8.2.js"></script>
8        <script src="../../ui/jquery.ui.core.js"></script>
9        <script src="../../ui/jquery.ui.widget.js"></script>
10        <script src="../../ui/jquery.ui.mouse.js"></script>
11        <script src="../../ui/jquery.ui.resizable.js"></script>
12        <link rel="stylesheet" href="../demos.css">
13        <style>
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>
20        $(function() {
21                $( "#resizable" ).resizable({
22                        containment: "#container"
23                });
24        });
25        </script>
26</head>
27<body>
28
29<div id="container" class="ui-widget-content">
30        <h3 class="ui-widget-header">Containment</h3>
31        <div id="resizable" class="ui-state-active">
32                <h3 class="ui-widget-header">Resizable</h3>
33        </div>
34</div>
35
36<div class="demo-description">
37<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>
38</div>
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.