added textarea-demo für resizable

This commit is contained in:
Jörn Zaefferer 2009-03-11 08:56:57 +00:00
parent dd601d526c
commit c0ea4c1aad
2 changed files with 37 additions and 0 deletions

View File

@ -19,6 +19,7 @@
<li><a href="synchronous-resize.html">Synchronous resize</a></li>
<li><a href="animate.html">Animate</a></li>
<li><a href="helper.html">Resize Helper</a></li>
<li><a href="textarea.html">Textarea</a></li>
</ul>
</div>

View File

@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Resizable - Textarea</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="../../jquery-1.3.2.js"></script>
<script type="text/javascript" src="../../ui/ui.core.js"></script>
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
<link type="text/css" href="../demos.css" rel="stylesheet" />
<style type="text/css">
.ui-resizable-se {
bottom: 17px;
}
</style>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({
handles: "se"
});
});
</script>
</head>
<body>
<div class="demo">
<textarea id="resizable" rows="5" cols="20"></textarea>
</div><!-- End demo -->
<div class="demo-description">
<p>Display only an outline of the element while resizing by setting the <code>helper</code> option to a CSS class.</p>
</div><!-- End demo-description -->
</body>
</html>