当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQuery UI Selectable distance用法及代码示例


jQuery UI 由 GUI 小部件、视觉效果和使用 jQuery JavaScript 库实现的主题组成。 jQuery UI 非常适合为网页构建 UI 接口。它可用于构建高度交互的 Web 应用程序,或者可用于轻松添加小部件。

jQuery 用户接口可选距离选项用于设置应开始选择的容差(以像素为单位)。直到鼠标拖动超出指定距离后才会开始选择。

用法:

使用距离选项初始化可选元素:

$( "Selector" ).selectable({
distance: 30
});
  • 获取默认选项:

    var distance = $( "Selector" ).selectable( "option", "distance" );
  • 设置默认选项:

    $( "Selector" ).selectable( "option", "distance", 30 );

CDN 链接:以下是您的项目所需的一些 jQuery Mobile 脚本,因此请将它们添加到您的项目中。

<link rel=”stylesheet” href=”https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”https://code.jquery.com/jquery-1.12.4.js”></script>
<script src=”https://code.jquery.com/ui/1.12.1/jquery-ui.js”></script>

例子:这个例子说明了使用jQuery Mobile 可选距离选项。

HTML


<!doctype html> 
<html lang="en"> 
  
<head> 
    <link rel="stylesheet" href= 
"https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css"> 
    <script src= 
"https://code.jquery.com/jquery-1.12.4.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/ui/1.12.1/jquery-ui.js"> 
    </script> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        #list .ui-selecting { 
            background: greenyellow; 
        } 
          
        #list .ui-selected { 
            color: white; 
            background: green; 
        } 
          
        #Button 
        { 
            margin-left: 50px; 
            padding: 0.5; 
            font-size: 20px; 
            height: 50px; 
            width: 50%; 
            background:green; 
              
        } 
    </style> 
    <script> 
        $(document).ready(function() { 
            $("#Button").on('click', function() { 
                var tolerance = $("#list").selectable( 
                "option", "distance"); 
                $("#gfg").html(tolerance); 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h3>jQuery UI Selectable distance Option</h3> 
        <ul id="list" style="list-style: none"> 
            <li>Data Structure</li> 
            <li>Algorithm</li> 
            <li>C++</li> 
            <li>Java</li> 
            <li>HTML</li> 
            <li>Bootstrap</li> 
            <li>PHP</li> 
        </ul> 
        <input type="button"
            id="Button"
            value="Value of the distance option"> 
        <h3> 
            <span id="gfg"></span> 
        </h3> 
    </center> 
    <script> 
        $(document).ready(function() { 
            $("#list" ).selectable({ 
                distance: 30 
            }); 
              
            $("#list").selectable("enable"); 
        }); 
    </script> 
</body> 
  
</html>

输出:

jQuery UI Selectable  distance Option

jQuery Mobile 可选距离选项。

参考: https://api.jqueryui.com/selectable/#option-distance



相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 jQuery UI Selectable distance Option。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。