jQuery Mobile - Tema Listview
Descripción
data-theme El atributo se agrega para incluir el tema de la vista de lista o al elemento de lista en particular.
El atributo data-divider-theme establece el tema para el divisor de lista.
El atributo data-count-theme se utiliza para establecer el tema de las burbujas de conteo.
El atributo data-split-theme establece el tema del botón de división.
Ejemplo
El siguiente ejemplo demuestra el uso del tema en la lista en jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<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.3.min.js"></script>
<script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<h2>Listview Theme Example</h2>
<h3>Count bubble theme</h3>
<ul data-role = "listview" data-inset = "true" data-theme = "b"
data-divider-theme = "a" data-count-theme = "a">
<li data-role = "list-divider">Mail Box</li>
<li><a href = "#">Inbox <span class = "ui-li-count">100</span></a></a></li>
<li><a href = "#">Chats<span class = "ui-li-count">6</span></a></a></li>
<li><a href = "#">Sent Mail<span class = "ui-li-count">20</span></a></a></li>
</ul><br/>
<h3>Split Button theme</h3>
<ul data-role = "listview" data-split-icon = "plus" data-theme = "a"
data-split-theme = "b" data-inset = "true">
<li><a href = "">Facebook</a>
<a href = "#purchase" data-rel = "popup" data-position-to = "window"
data-transition = "pop">Login</a>
</li>
<li><a href = "">Twitter</a>
<a href = "#purchase" data-theme = "a" data-rel = "popup"
data-position-to = "window" data-transition = "pop">Login</a>
</li>
</ul>
</body>
</html>
Salida
Realicemos los siguientes pasos para ver cómo funciona el código anterior:
Guarde el código html anterior como listview_theme.html archivo en la carpeta raíz de su servidor.
Abra este archivo HTML como http: //localhost/listview_theme.html y se mostrará el siguiente resultado.