BootWiki教程网
源代码:
点击运行
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI 缩放(Resizable) - 延迟开始</title> <link href="//cdn.staticfile.net/jqueryui/1.10.4/css/jquery-ui.min.css" rel="stylesheet"> <script src="//cdn.staticfile.net/jquery/1.10.2/jquery.min.js"></script> <script src="//cdn.staticfile.net/jqueryui/1.10.4/jquery-ui.min.js"></script> <link href="jqueryui/style.css" rel="stylesheet"> <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 class="ui-widget-content" id="resizable"> <h3 class="ui-widget-header">时间</h3> </div> <h3 class="docs">距离延迟 (px):</h3> <div class="ui-widget-content" id="resizable2"> <h3 class="ui-widget-header">距离</h3> </div> </body> </html>
运行结果