jquery-ui/demos/resizable/distance.html

40 lines
993 B
HTML
Raw Normal View History

<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Resizable - Distance Demo</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
2009-01-08 05:44:34 +00:00
<script type="text/javascript" src="../../jquery-1.3pre.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">
#resizable { width: 150px; height: 150px; padding: 0.5em; }
2009-01-01 00:27:45 +00:00
#resizable h3 { text-align: center; margin: 0; }
</style>
<script type="text/javascript">
$(function() {
$("#resizable").resizable({
distance: 40
});
});
</script>
</head>
<body>
2008-12-31 14:13:30 +00:00
<div class="demo">
<div id="resizable" class="ui-widget-content">
2009-01-01 00:27:45 +00:00
<h3 class="ui-widget-header">Distance</h3>
</div>
2008-12-31 14:13:30 +00:00
</div><!-- End demo -->
<div class="demo-description">
<p>
<!-- Add description here -->
</p>
</div><!-- End demo-description -->
</body>
</html>