2008-12-31 01:20:50 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>jQuery UI Resizable - Delay Demo</title>
|
2009-01-07 02:36:51 +00:00
|
|
|
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
|
2009-01-14 23:26:15 +00:00
|
|
|
<script type="text/javascript" src="../../jquery-1.3.js"></script>
|
2008-12-31 01:20:50 +00:00
|
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
|
|
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
|
2008-12-31 06:29:31 +00:00
|
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
2008-12-31 01:20:50 +00:00
|
|
|
<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; }
|
2008-12-31 01:20:50 +00:00
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function() {
|
2008-12-29 03:07:22 +00:00
|
|
|
$("#resizable").resizable({
|
|
|
|
delay: 1000
|
2008-12-31 01:20:50 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2008-12-31 14:13:30 +00:00
|
|
|
<div class="demo">
|
|
|
|
|
2008-12-31 01:20:50 +00:00
|
|
|
<div id="resizable" class="ui-widget-content">
|
2009-01-01 00:27:45 +00:00
|
|
|
<h3 class="ui-widget-header">Delay</h3>
|
2008-12-31 01:20:50 +00:00
|
|
|
</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 -->
|
2008-12-31 01:20:50 +00:00
|
|
|
</body>
|
|
|
|
</html>
|