2008-12-31 01:20:50 +00:00
<!doctype html>
< html lang = "en" >
< head >
2009-01-16 21:47:11 +00:00
< title > jQuery UI Resizable - Animate< / 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
.ui-resizable-helper { border: 1px dotted gray; }
< / style >
< script type = "text/javascript" >
$(function() {
2008-12-29 03:07:22 +00:00
$("#resizable").resizable({
animate: true
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" > Animate< / 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" >
2009-01-16 21:47:11 +00:00
< p > Animate the resize action using the < strong > animate< / strong > option (boolean). When this option is set to true, drag the outline to the desired location; the element animates to that size on drag stop.< / p >
2008-12-31 14:13:30 +00:00
< / div > <!-- End demo - description -->
2008-12-31 01:20:50 +00:00
< / body >
< / html >