jQuery Mobile - Ícone Navbars de terceiros
Descrição
Você pode adicionar ícones de terceiros à sua barra de navegação. Para conseguir isso, basta adicionar estilos personalizados para vincular aos ícones e colocá-los na barra de navegação.
Exemplo
O exemplo a seguir demonstra o uso de ícones navbars de terceiros no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>Navbars 3rd Party Icons</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>
<style>
.nav-glyphish-example .ui-btn {
padding-top: 40px !important;
}
.nav-glyphish-example .ui-btn:after {
width: 30px!important;
height: 30px!important;
margin-left: -15px !important;
}
#home:after {
background: url("/jquery_mobile/images/home.png") no-repeat;
}
#notify:after {
background: url("/jquery_mobile/images/notifications.png") no-repeat;
}
</style>
</head>
<body>
<div data-role = "footer" class = "nav-glyphish-example" data-theme = "a">
<div data-role = "navbar" class = "nav-glyphish-example" data-grid = "a">
<ul>
<li><a href = "#" id = "home" data-icon = "custom">Home</a></li>
<li><a href = "#" id = "notify" data-icon = "custom">Notifications</a></li>
</ul>
</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 navbar_3rd_party_icons.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/navbar_3rd_party_icons.html e a seguinte saída será exibida.