jQWidgets jqxNotification animationCloseDelay Propiedad

jQWidgets es un marco de JavaScript para crear aplicaciones basadas en web para PC y dispositivos móviles. Es un marco muy potente, optimizado, independiente de la plataforma y ampliamente compatible. jqxNotification representa un widget de jQuery que se puede usar para mostrar algún contenido de notificación al usuario. jqxNotification se puede modificar según las necesidades del usuario.

La propiedad animationCloseDelay se usa para establecer o devolver la propiedad animationCloseDelay . es decir, esta propiedad se usa para establecer o devolver la duración de la animación de notificación mientras se cierra. Acepta valores de tipo número/string y su valor predeterminado es 800.

Sintaxis:

  • Establezca la propiedad animationCloseDelay .

    $('Selector').jqxNotification({ 
        animationCloseDelay: number/string
    });
  •  

  • Devuelve la propiedad animationCloseDelay .

    var animationCloseDelay = $('Selector')
        .jqxNotification('animationCloseDelay ');

Archivos vinculados: descargue jQWidgets desde el enlace. En el archivo HTML, busque los archivos de script en la carpeta descargada:

<link rel=”hoja de estilo” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min .js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxnotification.js”> </script>

Ejemplo: El siguiente ejemplo ilustra la propiedad jqxNotification animationCloseDelay en jQWidgets:

HTML

<!DOCTYPE html>
<html lang="en">
  
<head>
    <link rel="stylesheet" href=
    "jqwidgets/styles/jqx.base.css" type="text/css" />
    <script type="text/javascript" 
        src="scripts/jquery-1.11.1.min.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxcore.js"></script>
    <script type="text/javascript" 
        src="jqwidgets/jqxnotification.js"></script>
</head>
  
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
  
    <h3>
        jQWidgets jqxNotification 
        animationCloseDelay property
    </h3>
  
    <div id="not"> Notification </div>
      
    <script type="text/javascript">
        $(document).ready(function () {
            $("#not").jqxNotification({
                width: "auto",
                position: "top-left",
                opacity: 0.9,
                autoOpen: true,
                autoClose: false,
                animationCloseDelay: 2000,
                template: "info",
                position: 'center'
            });
        });
    </script>
</body>
  
</html>

Producción:

Referencia: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxnotification/jquery-notification-api.htm?search=

Publicación traducida automáticamente

Artículo escrito por taran910 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 *