通过定义 draggable 区域的边界来约束每个 draggable 的运动。设置 axis 选项来限制 draggable 的路径为 x 轴或者 y 轴
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>draggable</title> <link rel="stylesheet" href="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/jquery-ui.min.css"> <style> .draggable{ width: 90px; height: 90px; padding: 0.5em; float: left; margin: 0 10px 10px 0; } #draggable1,#draggable2{ margin-bottom: 20px; } #draggable1{ cursor: e-resize; } #draggable2{ cursor:n-resize; } h4{ clear:left; } </style> </head> <body> <h4>沿着X轴约束运动:</h4> <div id="draggable1" class="draggable ui-widget-content"> <p>只能水平拖拽</p> </div> <h4>沿着Y轴约束运动:</h4> <div id="draggable2" class="draggable ui-widget-content"> <p>只能垂直拖拽</p> </div> <script src="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/external/jquery/jquery.js" type="text/javascript" ></script> <script src="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/jquery-ui.min.js"></script> <script> $("#draggable1").draggable({axis:"x"}); $("#draggable2").draggable({axis:"y"}); </script> </body> </html>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。