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


jQuery Mobile Listview inset用法及代碼示例


jQuery Mobile 是一個基於 HTML5 的用戶接口係統,旨在製作可在所有智能手機、平板電腦和桌麵設備上訪問的響應式網站和應用程序。 jQuery Listview 是一個用於創建漂亮列表的小部件。它是一個簡單且響應式的列表視圖,用於查看 unordered lists

在本文中,我們將使用jQuery 移動插圖選項它為 ListView 提供了插入外觀。這對於將列表與頁麵上的其他內容混合非常有用。它為 Listview 提供了良好的 UI 外觀。這列表顯示由於列表視圖周圍的陰影,它似乎從屏幕上凸起。

用法:語法為插圖jQuery Mobile 中的選項采用布爾值。如果真的,它應用插入,否則不應用插入。

使用以下命令初始化列表視圖插圖指定選項:

$(".selector").listview({
    inset: true
});

獲取或設置插圖選項,初始化後:

// Getter
var inset = $( ".selector" ).listview( "option", "inset" );
 
// Setter
$( ".selector" ).listview( "option", "inset", true );

CDN 鏈接:使用以下 jQuery Mobile 的 CDN 鏈接。

<link rel=”stylesheet” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code.jquery.com/jquery-1.11.1.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

示例 1:在這個例子中,我們將設置插圖期權值為真的。

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://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> 
    <script src="https://code.jquery.com/jquery-1.11.1.min.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> 
    </script> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h3>jQuery Mobile Listview inset Option</h3> 
      
    <ul class="items" data-role="listview"> 
        <li> 
            <a href= 
            "https://www.geeksforgeeks.org/data-structures" 
                target="_blank"> 
                Data Structures</a> 
        </li> 
        <li> 
            <a href= 
"https://www.geeksforgeeks.org/courses/complete-interview-preparation" 
                target="_blank"> 
                Interview preparation</a> 
        </li> 
        <li> 
            <a href="https://www.geeksforgeeks.org/java" 
                target="_blank"> 
                Java Programming</a> 
        </li> 
    </ul> 
  
    <script> 
        $(".items").listview({ 
            inset: true 
        }); 
    </script> 
</body> 
  
</html>

輸出:

示例 2:在這個例子中,我們將插圖 選項 錯誤的.

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://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> 
    <script src="https://code.jquery.com/jquery-1.11.1.min.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> 
    </script> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h3>jQuery Mobile Listview inset Option</h3> 
  
    <ul class="items" data-role="listview"> 
        <li> 
            <a href= 
            "https://www.geeksforgeeks.org/data-structures" 
                target="_blank"> 
                Data Structures</a> 
        </li> 
        <li> 
            <a href= 
"https://www.geeksforgeeks.org/courses/complete-interview-preparation"
                 target="_blank"> 
                Interview preparation</a> 
        </li> 
        <li> 
            <a href="https://www.geeksforgeeks.org/java" 
                target="_blank"> 
                Java Programming</a> 
        </li> 
    </ul> 
      
    <script> 
        $(".items").listview({ 
            inset: false, 
        }); 
    </script> 
</body> 
  
</html>

輸出:

參考: https://api.jquerymobile.com/listview/#option-inset



相關用法


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