當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery UI Draggable snapTolerance用法及代碼示例


jQuery UI 由 GUI 小部件、視覺效果和使用 jQuery JavaScript 庫實現的主題組成。 jQuery UI 非常適合為網頁構建 UI 接口。它可用於構建高度交互的 Web 應用程序,或者可用於輕鬆添加小部件。

在本文中,我們將學習 jQuery UI Draggable snapTolerance 選項。 snapTolerance 選項設置兩個可拖動項目對齊的最小距離。

用法: 咬合公差需要一個數值默認值為 20。選項是已初始化如下。

$(".drag").draggable({
    snapTolerance: 10
});
  • 獲取 snapTolerance 選項:

    var snapToleranceOpt = $(".drag")
    .draggable("option", "snapTolerance");
  • 設置 snapTolerance 選項:

    $(".drag").draggable("option", "snapTolerance", 10);

CDN 鏈接:將以下 CDN 用於 jQuery UI 項目。

<link rel=”stylesheet” href=”https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css” />
<script src=”https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js”></script>
<script src=”https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js”></script>

示例:在下麵的例子中,我們設置了咬合公差10.

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8" /> 
    <meta http-equiv="X-UA-Compatible"
          content="IE=edge" /> 
    <meta name="viewport" 
          content="width=device-width, initial-scale=1.0" /> 
    <link rel="stylesheet" 
          href= 
"https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" /> 
    <script 
          src= 
"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"> 
    </script> 
    <script 
          src= 
"https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"> 
    </script> 
    <style type="text/css"> 
    .drag { 
        width: 50px; 
        height: 50px; 
        line-height: 50px; 
        border: 1px solid black; 
        cursor: pointer; 
        border-radius: 10px; 
        text-align: center; 
        background-color: lightgreen; 
    } 
  
    .container { 
        background-color: darkgreen; 
        width: 200px; 
        height: 200px; 
        margin: auto; 
    } 
    </style> 
</head> 
  
<body> 
    <div data-role="page" id="gfgpage"> 
        <h1 style="color: green;"> 
            GeeksforGeeks 
        </h1> 
        <div data-role="main" class="ui-content"> 
            <h3>jQuery UI Draggable snapTolerance option</h3> 
            <div id="gfg_container" 
                 class="container"> 
                <div class="drag" 
                     style="left:20px;top:20px;"> 
                  Box 1 
                </div> 
                <div class="drag"
                     style="left:20px;top:30px; 
                            background-color:lightgray"> 
                      Box 2 
                </div> 
            </div> 
        </div> 
    </div> 
    <script> 
    $(".drag").draggable({ 
        containment: "#gfg_container", 
        snap: true, 
        snapTolerance: 10 
    }); 
    </script> 
</body> 
  
</html>

輸出

jQuery UI Draggable snapTolerance Option

jQuery UI 可拖動 snapTolerance 選項

參考:https://api.jqueryui.com/draggable/#option-snapTolerance



相關用法


注:本文由純淨天空篩選整理自RajeevSarkar大神的英文原創作品 jQuery UI Draggable snapTolerance Option。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。