jQueryUIでリサイズを実装するサンプルです。
サンプルソース
例)jQuery UIを使ったリサイズのサンプル
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>jQueryUIリサイズサンプル</title> <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <style> #d1{ border:1px solid #808080; background-color:skyblue; width:200px; height:100px; min-width:100px; min-height:50px; } </style> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script> <script> $(function(){ //リサイズ設定 $("#d1").resizable(); }); </script> </head> <body> <div id="d1">リサイズできます。</div> </body> </html> |
実行サンプル
↓リサイズできます。
リサイズできます。
解説
- jQueryUI(Resizable)公式ページ ⇒ https://jqueryui.com/resizable/