jQuery Mobile es una tecnología basada en la web que se utiliza para crear contenido receptivo al que se puede acceder en todos los teléfonos inteligentes, tabletas y computadoras de escritorio.
En este artículo, utilizaremos la opción de tema jQuery Mobile Toolbar . La opción de tema de la barra de herramientas se utiliza para establecer el esquema de color de la barra de herramientas. Acepta una sola letra (az) que se asigna a una muestra en el tema.
Sintaxis:
$(".selector").toolbar({ theme: "b" });
Vínculos CDN: Primero, agregue los scripts de jQuery Mobile necesarios para su proyecto.
<enlace rel=”hoja de estilo” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code .jquery.com/jquery-2.1.3.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js”> </script>
Ejemplo 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-2.1.3.js"> </script> <script src= "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"> </script> <script> function changeTheme() { $("#divID").toolbar("option", "theme", "b"); } </script> </head> <body> <div data-role="page"> <center> <h2 style="color:green">GeeksforGeeks</h2> <h3>jQuery Mobile Toolbar theme option</h3> <div id="divID" data-role="header"> <h1>Toolbar</h1> </div> <button style="width:250px; margin:30px 0" onclick="changeTheme();"> Change Theme to swatch b </button> </center> </div> </body> </html>
Producción:
Ejemplo 2: ahora vamos a crear una nueva muestra que se asigne a la letra «c» y usemos la opción de tema para cambiar el tema de la barra de herramientas.
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-2.1.3.js"> </script> <script src= "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"> </script> <style> /* Custom swatch "c" just for toolbar */ .ui-bar-c{ background-color: #009245; /* toolbar background color*/ border-color: #dddddd; /* toolbar border color*/ color: #ffffff; /* toolbar text color*/ } </style> <script> function changeTheme() { $("#divID").toolbar("option", "theme", "c"); } </script> </head> <body> <div data-role="page"> <center> <h2 style="color:green">GeeksforGeeks</h2> <h3>jQuery Mobile Toolbar theme option</h3> <div id="divID" data-role="header"> <h1>Toolbar</h1> </div> <button style="width:250px; margin:30px 0" onclick="changeTheme();"> Change Theme to swatch c </button> </center> </div> </body> </html>
Producción:
Referencia: https://api.jquerymobile.com/toolbar/#option-theme