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


jQWidgets jqxDocking windowsOffset屬性用法及代碼示例


jQWidgets 是一個 JavaScript 框架,用於為 PC 和移動設備製作基於 Web 的應用程序。它是一個非常強大、優化、獨立於平台且得到廣泛支持的框架。 jqxDocking 用於表示一個小部件來管理多個窗口以及網頁的布局。這裏指定的 jqxDocking 中的每個窗口都可以執行多項任務,例如可以在網頁周圍拖動、停靠到停靠區域、從停靠中移除、折疊到最小化狀態以隱藏其內容,還可以展開以顯示其內容內容。

窗口偏移量屬性用於設置或獲取指定jqxDocking的窗口之間的偏移量。

用法:

  • 用於設置窗口偏移量 屬性:
$('#jqxDocking').jqxDocking({ windowsOffset: 1 });  
  • 為了得到窗口偏移量屬性:
var windowsOffset = 
    $('#jqxDocking').jqxDocking('windowsOffset');

鏈接文件:從給定鏈接下載 https://www.jqwidgets.com/download/。在 HTML 文件中,找到下載文件夾中的腳本文件。

<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdocking.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxwindow.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>

例子:下麵的例子說明了 jQWidgets窗口偏移量屬性。在下麵的示例中,值窗口偏移量屬性已設置為 1。

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <link rel="stylesheet" 
          href="jqwidgets/styles/jqx.base.css" 
          type="text/css"/> 
    <script type="text/javascript" 
            src="scripts/jquery.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxcore.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqxdocking.js"> 
    </script> 
    <script type="text/javascript" 
            src="jqwidgets/jqx-all.js"> 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color: green;"> 
            GeeksforGeeks 
        </h1> 
        <h3> 
            jQWidgets jqxDocking windowsOffset Property 
        </h3> 
        <div id="jqx_Docking" style="margin: 25px;" 
             align="left"> 
            <div> 
                <div id="First_Window"> 
                    <div>First Window</div> 
                    <div> 
                        <h8>Content of the first window</h8> 
                        <ul> 
                            <li>GFG</li> 
                        </ul> 
                    </div> 
                </div> 
                <div id="Second_Window"> 
                    <div>Second Window</div> 
                    <div> 
                        <h8>Content of the second window</h8> 
                        <ul> 
                            <li>GeeksforGeeks</li> 
                        </ul> 
                    </div> 
                </div> 
            </div> 
        </div> 
        <input type="button" style="margin: 29px;" 
               id="jqxbutton_for_windowsOffset"
            value="Value of the windowsOffset property"/> 
        <div id="log"></div> 
        <script type="text/javascript"> 
            $(document).ready(function () { 
                $("#jqx_Docking").jqxDocking({ 
                    width: 250, 
                    windowsOffset: 1 
                }); 
                $("#jqxbutton_for_windowsOffset"). 
                    jqxButton({ 
                        width: 280 
                    }); 
                $('#jqxbutton_for_windowsOffset').on( 
                    'click', function () { 
                        var Value_of_windowsOffset = 
                            $('#jqx_Docking').jqxDocking( 
                                'windowsOffset'); 
                        $("#log").html(JSON.stringify( 
                            Value_of_windowsOffset)); 
                    }); 
            }); 
        </script> 
    </center> 
</body> 
  
</html>

輸出:

參考:https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxnavigationbar/jquery-navigationbar-api.htm?search=



相關用法


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