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 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>jQueryUIドラッグサンプル</title> <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(){ //ドラッグ設定 $("#div1").draggable(); }); </script> <style> #div1{ border:1px solid #999999; background-color:lightgray; width:200px; height:100px; cursor:move; } </style> </head> <body> <div id="div1">ドラッグできます</div> </body> </html> |
実行サンプル
↓ドラッグできます。
ドラッグできます
解説
- jQueryUI(Draggable)公式ページ ⇒ https://jqueryui.com/draggable/