编辑下面的代码:【加编码】
<html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI 缩放(Resizable) - 延迟开始</title> <link rel="stylesheet" href="https://libs.baidu.com/jqueryui/1.10.4/css/jquery-ui.min.css"> <script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script src="https://libs.baidu.com/jqueryui/1.10.4/jquery-ui.min.js"></script> <link rel="stylesheet" href="/demo/jqueryui/style.css"> <style> #resizable, #resizable2 { width: 150px; height: 150px; padding: 0.5em; } #resizable h3, #resizable2 h3 { text-align: center; margin: 0; } </style> <script> $(function() { $( "#resizable" ).resizable({ delay: 1000 }); $( "#resizable2" ).resizable({ distance: 40 }); }); </script> </head> <body> <h3 class="docs">时间延迟 (ms):</h3> <div id="resizable" class="ui-widget-content"> <h3 class="ui-widget-header">时间</h3> </div> <h3 class="docs">距离延迟 (px):</h3> <div id="resizable2" class="ui-widget-content"> <h3 class="ui-widget-header">距离</h3> </div> </body> </html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂