web-dev-qa-db-ja.com

一定時間後にJQueryを呼び出す?

Bram Jettenのjsファイルを調べています。

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();
    });
  });
}

...

ボタンの1つにクリックイベントを割り当て、そのボタンをクリックすると、新しい通知が呼び出されます。

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

その通知をクリックすると、通知も閉じます。しかし、一定の時間が経過してもクリックしない場合は、それ自体を閉じます。その非表示関数を呼び出したり、表示された後しばらくしてから閉じたりするにはどうすればよいですか?

15
kamaci
var that = this;

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

それは私のために働いた。

31
kamaci

タイムアウトを設定して強制的に非表示にします。

/**
 * 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

行を

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

ただし、追加の内部ブール値が必要になるため、通知を2回非表示(および破棄)できません。

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

一定時間後にclick eventを呼び出します

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