jQuery Mobile - Painéis internos e externos
Descrição
Você pode exibir os painéis internos e externos, fornecendo o caminho dos painéis no href atributo.
Exemplo
O exemplo a seguir descreve o uso de painéis internos e externos na estrutura do jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>External and Internal Panels</title>
<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>
<script>
$( document ).on( "pagecreate", function() {
$( "body > [data-role = 'panel']" ).panel();
$( "body > [data-role = 'panel'] [data-role = 'listview']" ).listview();
});
$( document ).one( "pageshow", function() {
$( "body > [data-role = 'header']" ).toolbar();
$( "body > [data-role = 'header'] [data-role = 'navbar']" ).navbar();
});
</script>
</head>
<body>
<div data-role = "header" data-position = "fixed" data-theme = "a">
<h2>Header</h2>
</div>
<div data-role = "page">
<div role = "main" class = "ui-content">
<h2>This is first page.</h2>
<a href = "#page_one"
class = "ui-btn ui-btn-inline">Click here to open right panel</a>
</div>
<div data-role = "panel" id = "page_one" data-position = "right"
data-display = "overlay" data-theme = "b">
<ul data-role = "listview">
<li data-icon = "delete"><a href = "#" data-rel = "close">Close</a></li>
<li>New Zealand</li>
<li>England</li>
<li>South Africa</li>
</ul>
</div>
<div data-role = "footer" data-position = "fixed">
<div data-role = "navbar">
<ul>
<li><a href = "/jquery_mobile/src/jqm_external_internal_panel.html"
class = "ui-btn-active">Page One</a></li>
<li><a href = "/jquery_mobile/src/page2.html">Page Two</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -
Salve o código html acima como jqm_external_internal_panel.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/jqm_external_internal_panel.html e a seguinte saída será exibida.