jQWidgets jqxNotification animationOpenDelay 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 animationOpenDelay se usa para establecer o devolver la propiedad animationOpenDelay . es decir, esta propiedad se utiliza para establecer o devolver la duración de la animación de notificación durante la apertura. Acepta valores de tipo número/string y su valor predeterminado es 400.

Sintaxis:

  • Establezca la propiedad animationOpenDelay .

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

  • Devuelve la propiedad animationOpenDelay .

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

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 animationOpenDelay 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 
        animationOpenDelay 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,
                animationOpenDelay: 1000,
                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 *