这篇文章主要介绍JQueryUI的Draggable如何在DOM元素中约束运动,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
通过定义 draggable 区域的边界来约束每个 draggable 的运动,使用 containment 选项来指定一个父级的 DOM 元素或者一 个 jQuery 选择器
<!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; cursor: move } h4{ clear:left; } #containment-wrapper{ width:95%; height: 450px; border:2px solid #ccc; padding:10px; } </style> </head> <body> <h4>在DOM 元素中约束运动:</h4> <div id="containment-wrapper"> <div id="draggable1" class="draggable ui-widget-content"> <p>我被约束在盒子里</p> </div> <div class="draggable ui-widget-content"> <p id="draggable2" class="ui-widget-header">我被约束在父元素内</p> </div> </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({ containment:"#containment-wrapper", scroll:false }); $("#draggable2").draggable({containment:"parent"}); </script> </body> </html>
以上是“JQueryUI的Draggable如何在DOM元素中约束运动”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。