web-dev-qa-db-fra.com

Appeler une fonction après un certain temps Jquery?

J'examine un fichier js Bram Jetten: 

Notification.fn = Notification.prototype;

function Notification(value, type, tag) {
  this.log(value, type);
  this.element = $('<li><span class="image '+ type +'"></span>' + value + '</li>');
  if(typeof tag !== "undefined") {
    $(this.element).append('<span class="tag">' + tag + '</span>');
  }
  $("#notifications").append(this.element);
  this.show();
}

/**
 * Show notification
 */
Notification.fn.show = function() {
  $(this.element).slideDown(200);
  $(this.element).click(this.hide);
}

/**
 * Hide notification
 */
Notification.fn.hide = function() {  
  $(this).animate({opacity: .01}, 200, function() {
    $(this).slideUp(200, function() {
      $(this).remove();
    });
  });
}

...

J'ai assigné un événement de clic à l'un de mes boutons et lorsque je clique sur ce bouton, il appelle une nouvelle notification:

new Notification('Hi', 'success');

Lorsque je clique sur cette notification, celle-ci se ferme également. Cependant, si je ne clique pas dessus après un certain temps, je le veux tout seul. Comment puis-je appeler cette fonction hide ou la fermer après un certain temps après son apparition?

14
kamaci
var that = this;

setTimeout(function() {   //calls click event after a certain time
   that.element.click();
}, 10000);

cela a fonctionné pour moi.

31
kamaci

Définissez un délai d'attente et forcez la peau.

/**
 * Show notification
 */
Notification.fn.show = function() {
  var self = this;
  $(self.element).slideDown(200)
                 .click(self.hide);

  setTimeout(function() {
    self.hide();
    // 3000 for 3 seconds
  }, 3000)
}
2
Lapple

Changer de ligne en

Notification.fn.show = function() {
    var self=this;
    $(this.element).slideDown(200);
    $(this.element).click(this.hide);
    setTimeout(function(){
        self.hide();
    },2000);
}

mais vous aurez besoin d'un booléen interne supplémentaire, afin que vous ne puissiez pas masquer (et donc détruire) la notification deux fois.

Notification.fn.hide = function() {
  if (!this.isHidden){  
    var self=this;
    $(this).animate({opacity: .01}, 200, function() {
      $(this).slideUp(200, function() {
        $(this).remove();
        self.isHidden=true;
      });
    });
  }
}
1
japrescott

appelle click event après un certain temps 

setTimeout(function() {   //calls click event after a certain time
      $(".signature-container .nf-field-element").append( $('#signature-pad')); 
}, 10000);
0
user3821656