Método jQuery Mobile panel toggle()

jQuery Mobile es una biblioteca de JavaScript que se utiliza para desarrollar sitios web y aplicaciones web receptivos. Está construido sobre jQuery . En este artículo, usaremos el método jQuery Mobile panel toggle() para alternar el estado del panel, es decir, si el panel está cerrado, se abrirá y si está abierto, se cerrará.

Sintaxis:

$(".selector").panel( "toggle" );

Argumentos: este método no acepta ningún argumento.

Enlaces CDN: debemos incluir jQuery mobile en nuestro código para usarlo.

<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: El siguiente ejemplo demuestra el uso del panel método alternar() .  

HTML

<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="utf-8">
    <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-2.1.3.js">
    </script>
    <script src=
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js">
    </script>
  
    <script>
        function togglePanel(){
            // Invoke the panel toggle() method
            $("#divID").panel("toggle");
        }
    </script>
</head>
  
<body>
  
    <div data-role="page">
        <div data-role="header" >
            <h1 style="color:green;">GeeksforGeeks</h1>
            <h3>jQuery Mobile Panel toggle() method</h3>
        </div>
  
        <div role="main" class="ui-content">
            <center>
                <button onclick="togglePanel();" style="width:400px;"> 
                   Toggle Panel
               </button>
            </center>
          </div>>
  
        <div data-role="panel" id="divID">
            <h3>GeeksforGeeks</h3>
            <button onclick="togglePanel();">Toggle Panel</button>
        </div>
    </div>
</body>
</html>

Producción:

Referencia: https://api.jquerymobile.com/panel/#method-toggle 

Publicación traducida automáticamente

Artículo escrito por vpsop y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *