jQuery UI 拖动(Draggable) - 延迟开始
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery UI 拖动(Draggable) - 延迟开始相关的知识,希望对你有一定的参考价值。
定义和用法
通过 delay 选项设置延迟开始拖拽的毫秒数。通过 distance 选项设置光标被按下且拖拽指定像素后才允许拖拽
示例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>jQuery UI 拖动(Draggable) - 延迟开始</title> <link rel="stylesheet" href="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/jquery-ui.min.css"> <style> #draggable1,#draggable2{ width: 120px; height: 120px; padding: 0.5em; float: left; margin: 0 10px 10px 0; } </style> </head> <body> <div id="draggable1" class="ui-widget-content"> <p>只有把我拖拽了 100 像素后,拖拽才开始</p> </div> <div id="draggable2" class="ui-widget-content"> <p>不管 distance 是多少,您都必须拖拽并等待 1000ms 后拖拽才开始</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> //100表示像素 $("#draggable1").draggable({ distance:100 }); //1000表示1000豪秒,也就是1秒 $("#draggable2").draggable({ delay:1000 }); </script> </body> </html>
输出
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1898441
以上是关于jQuery UI 拖动(Draggable) - 延迟开始的主要内容,如果未能解决你的问题,请参考以下文章
jQuery Easy UI Draggable(拖动)组件
jquery-ui-处理拖动位置Droppable,Draggable
jQuery UI 拖动(Draggable) - Handles和Cancel