jQuery Mobile - Widget de tema
Descrição
Você pode definir diferentes tipos de tema no carregador usando o data-theme atributo.
Exemplo
O exemplo a seguir descreve o uso do widget de tema no jQuery Mobile Framework.
<!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>
<script>
$( document ).on( "click", ".load_msg", function() {
var $this = $( this ),
theme = $this.jqmData( "theme" ) || $.mobile.loader.prototype.options.theme,
msgText = $this.jqmData( "msgtext" ) || $.mobile.loader.prototype.options.text,
textVisible = $this.jqmData( "textvisible" ) || $.mobile.loader.prototype.options.textVisible,
textonly = !!$this.jqmData( "textonly" );
$.mobile.loading( "show", {
text: msgText,
textVisible: textVisible,
theme: theme,
textonly: textonly
});
})
.on( "click", ".hide_page", function() {
$.mobile.loading( "hide" );
});
</script>
</head>
<body>
<button class = "load_msg" data-theme = "a" data-textvisible = "true"
data-msgtext = "It will load the theme a" data-inline = "true">Theme A</button>
<button class = "load_msg" data-theme = "b" data-textvisible = "true"
data-msgtext = "It will load the theme b" data-inline = "true">Theme B</button>
<button class = "hide_page" data-inline = "true" data-icon = "delete">
It hides the loading of theme</button>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -
Salve o código html acima como jqm_theme.html arquivo na pasta raiz do servidor.
Abra este arquivo HTML como http: //localhost/jqm_theme.html e a seguinte saída será exibida.