jQuery Mobile Popup beforeposition Evento

jQuery Mobile es una tecnología web construida sobre jQuery. Se utiliza para crear contenido receptivo al que se puede acceder en una variedad de dispositivos como pestañas, móviles y computadoras de escritorio.

En este artículo, usaremos el evento jQuery Mobile Popup beforeposition que se activa antes de que la ventana emergente calcule las coordenadas donde aparecerá.

Sintaxis:

  • Inicialice la ventana emergente con la devolución de llamada antes de la posición especificada:

    $( ".selector" ).popup({
      beforeposition: function( event, ui ) {
          // Your code goes here
      }
    });
  •  

  • Vincule un detector de eventos al evento popupbeforeposition :

    $( ".selector" ).on( "popupbeforeposition", function( event, ui ) {} );

Parámetros: Acepta una función de devolución de llamada que contiene dos parámetros:

  • evento: Acepta valor de tipo Evento .
  • ui: acepta el valor del tipo de objeto . El objeto ui puede estar vacío pero se puede usar para mantener la coherencia con otros eventos en la biblioteca.

Enlaces CDN:

<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: este ejemplo describe los usos del evento beforeposition de jQuery Mobile Popup.

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" />
    <title>Popup - beforeposition Event</title>
  
    <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>
  
  
        $(document).ready(function () {
              // Initialize the popup with 
            // beforeposition callback specified.
            $( "#popup1" ).popup({
                beforeposition: function( event, ui ) {
                      // open the alert when the event is fired.
                    alert("beforeposition event triggered");
                }
            });
        });
  
          // A function to open the popup to
          // demonstrate the beforeposition event.
        function openPopup() {
            $("#popup1").popup("open", { positionTo: "#target" });
        }
          
    </script>
</head>
  
<body>
    <div data-role="page">
        <center>
            <h2 style="color: green">GeeksforGeeks</h2>
            <h3>jQuery Mobile Popup beforeposition Event</h3>
  
            <p id="target">Popup will open here</p>
  
  
            <div data-role="popup" id="popup1">
                <p>Welcome to GeeksforGeeks</p>
            </div>
  
            <button style="width: 450px;" onclick="openPopup()">
                    Open Popup</button>
  
            <p id="write"></p>
  
        </center>
    </div>
</body>
  
</html>

Producción:

jQuery Mobile Popup beforeposition Event

Referencia: https://api.jquerymobile.com/popup/#event-beforeposition

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 *